Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

dateutils: 0.4.4 -> 0.4.5 (#47961)

datezone needs TZdata
+ enabling parallel building
+ run the tests suite

authored by

Renaud and committed by
xeji
0f283b4f a134b9a3

+9 -3
+9 -3
pkgs/tools/misc/dateutils/default.nix
··· 1 - { stdenv, fetchurl }: 1 + { stdenv, fetchurl, autoreconfHook, tzdata }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.4.4"; 4 + version = "0.4.5"; 5 5 name = "dateutils-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz"; 9 - sha256 = "0ky8177is4swgxfqczc78d7yjc13w626k515qw517086n7xjxk59"; 9 + sha256 = "1pnbc186mnvmyb5rndm0ym50sjihsy6m6crz62xxsjbxggza1mhn"; 10 10 }; 11 + 12 + nativeBuildInputs = [ autoreconfHook ]; 13 + buildInputs = [ tzdata ]; # needed for datezone 14 + enableParallelBuilding = true; 15 + 16 + doCheck = true; 11 17 12 18 meta = with stdenv.lib; { 13 19 description = "A bunch of tools that revolve around fiddling with dates and times in the command line";