mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
dateutils: 0.4.4 -> 0.4.5 (#47961)
datezone needs TZdata + enabling parallel building + run the tests suite
This commit is contained in:
parent
a134b9a3dd
commit
0f283b4f5a
@ -1,14 +1,20 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, autoreconfHook, tzdata }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.4.4";
|
version = "0.4.5";
|
||||||
name = "dateutils-${version}";
|
name = "dateutils-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
|
||||||
sha256 = "0ky8177is4swgxfqczc78d7yjc13w626k515qw517086n7xjxk59";
|
sha256 = "1pnbc186mnvmyb5rndm0ym50sjihsy6m6crz62xxsjbxggza1mhn";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
buildInputs = [ tzdata ]; # needed for datezone
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
||||||
homepage = http://www.fresse.org/dateutils/;
|
homepage = http://www.fresse.org/dateutils/;
|
||||||
|
Loading…
Reference in New Issue
Block a user