2023-07-12 15:22:45 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook, tzdata }:
|
2017-02-09 03:31:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2024-01-26 06:04:33 +00:00
|
|
|
version = "0.4.11";
|
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";
|
2024-01-26 06:04:33 +00:00
|
|
|
sha256 = "sha256-uP6gsJcUu63yArmzQ0zOa1nCgueGkmjQwIuFiA/btEY=";
|
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 = "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 ];
|
|
|
|
};
|
|
|
|
}
|