nixpkgs/pkgs/tools/misc/dateutils/default.nix
Renaud 0f283b4f5a dateutils: 0.4.4 -> 0.4.5 (#47961)
datezone needs TZdata
+ enabling parallel building
+ run the tests suite
2018-10-06 15:26:54 +02:00

26 lines
748 B
Nix

{ stdenv, fetchurl, autoreconfHook, tzdata }:
stdenv.mkDerivation rec {
version = "0.4.5";
name = "dateutils-${version}";
src = fetchurl {
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
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/;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.paperdigits ];
};
}