2018-10-06 14:26:54 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, tzdata }:
|
2017-02-09 03:31:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-24 00:03:19 +00:00
|
|
|
version = "0.4.6";
|
2017-02-09 03:31:31 +00:00
|
|
|
name = "dateutils-${version}";
|
|
|
|
|
2017-07-25 12:25:50 +01:00
|
|
|
src = fetchurl {
|
2017-02-09 03:31:31 +00:00
|
|
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
|
2019-03-24 00:03:19 +00:00
|
|
|
sha256 = "1kaphw474lz7336awr9rzsgcsr1p9njsjsryd8i0ywg5g8qp3816";
|
2017-07-25 12:25:50 +01:00
|
|
|
};
|
2017-02-09 03:31:31 +00:00
|
|
|
|
2018-10-06 14:26:54 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ tzdata ]; # needed for datezone
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2017-02-09 03:31:31 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|