2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
|
2017-02-09 04:31:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-25 05:51:11 +02:00
|
|
|
version = "0.4.9";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "dateutils";
|
2017-02-09 04:31:31 +01:00
|
|
|
|
2017-07-25 13:25:50 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz";
|
2021-08-25 05:51:11 +02:00
|
|
|
sha256 = "1hy96h9imxdbg9y7305mgv4grr6x4qic9xy3vhgh15lvjkcmc0kr";
|
2017-07-25 13:25:50 +02:00
|
|
|
};
|
2017-02-09 04:31:31 +01: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-09 04:31:31 +01:00
|
|
|
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.fresse.org/dateutils/";
|
2017-02-09 04:31:31 +01:00
|
|
|
license = licenses.bsd3;
|
2021-11-29 01:35:58 +01:00
|
|
|
platforms = platforms.unix;
|
2017-02-09 04:31:31 +01:00
|
|
|
maintainers = [ maintainers.paperdigits ];
|
|
|
|
};
|
|
|
|
}
|