dateutils: 0.4.4 -> 0.4.5 (#47961)

datezone needs TZdata
+ enabling parallel building
+ run the tests suite
This commit is contained in:
Renaud 2018-10-06 15:26:54 +02:00 committed by xeji
parent a134b9a3dd
commit 0f283b4f5a

View file

@ -1,14 +1,20 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, autoreconfHook, tzdata }:
stdenv.mkDerivation rec {
version = "0.4.4";
version = "0.4.5";
name = "dateutils-${version}";
src = fetchurl {
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; {
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
homepage = http://www.fresse.org/dateutils/;