2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
|
2017-02-08 19:31:31 -08:00
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-05-07 12:34:11 -07:00
|
|
|
version = "0.4.8";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dateutils";
|
2017-02-08 19:31:31 -08:00
|
|
|
|
2017-07-25 14:25:50 +03:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz";
|
2021-05-07 12:34:11 -07:00
|
|
|
sha256 = "0061f36axskm7yq9cp64x5a5phil8d3zgcd668nfmqzk9ji58w1z";
|
2017-07-25 14:25:50 +03:00
|
|
|
};
|
2017-02-08 19:31:31 -08:00
|
|
|
|
2018-10-06 15:26:54 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
buildInputs = [ tzdata ]; # needed for datezone
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-02-08 19:31:31 -08:00
|
|
|
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.fresse.org/dateutils/";
|
2017-02-08 19:31:31 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
maintainers = [ maintainers.paperdigits ];
|
|
|
|
|
};
|
|
|
|
|
}
|