2018-10-06 14:26:54 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, tzdata }:
|
2017-02-09 03:31:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-02-07 04:58:44 +00:00
|
|
|
version = "0.4.7";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dateutils";
|
2017-02-09 03:31:31 +00:00
|
|
|
|
2017-07-25 12:25:50 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz";
|
2020-02-07 04:58:44 +00:00
|
|
|
sha256 = "16jr9yjk8wgzfh22hr3z6mp4jm3fkacyibds4jj5xx5yymbm8wj9";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|