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
856 B
Nix
Raw Normal View History

{ 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";
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";
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
# 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 = "A 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 ];
};
}