nixpkgs/pkgs/tools/misc/dateutils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
842 B
Nix
Raw Normal View History

{ 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";
pname = "dateutils";
2017-02-09 03:31:31 +00:00
2017-07-25 11:25:50 +00:00
src = fetchurl {
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
# https://github.com/hroptatyr/dateutils/issues/148
postPatch = "rm test/dzone.008.ctst";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ tzdata ]; # needed for datezone
enableParallelBuilding = true;
doCheck = true;
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";
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 ];
};
}