2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
|
2017-02-09 03:31:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-06-25 13:19:59 +00:00
|
|
|
version = "0.4.10";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dateutils";
|
2017-02-09 03:31:31 +00:00
|
|
|
|
2017-07-25 11:25:50 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz";
|
2022-06-25 13:19:59 +00:00
|
|
|
sha256 = "sha256-PFCOKIm51a7Kt9WdcyWnAIlZMRGhIwpJbasPWtZ3zew=";
|
2017-07-25 11:25:50 +00:00
|
|
|
};
|
2017-02-09 03:31:31 +00:00
|
|
|
|
2022-12-10 09:58:13 +00:00
|
|
|
# https://github.com/hroptatyr/dateutils/issues/148
|
|
|
|
postPatch = "rm test/dzone.008.ctst";
|
|
|
|
|
2018-10-06 13:26:54 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ tzdata ]; # needed for datezone
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-02-09 03:31:31 +00:00
|
|
|
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.fresse.org/dateutils/";
|
2017-02-09 03:31:31 +00:00
|
|
|
license = licenses.bsd3;
|
2021-11-29 00:35:58 +00:00
|
|
|
platforms = platforms.unix;
|
2017-02-09 03:31:31 +00:00
|
|
|
maintainers = [ maintainers.paperdigits ];
|
|
|
|
};
|
|
|
|
}
|