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

33 lines
988 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
2017-02-09 03:31:31 +00:00
stdenv.mkDerivation rec {
2020-02-07 04:58:44 +00:00
version = "0.4.7";
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";
2020-02-07 04:58:44 +00:00
sha256 = "16jr9yjk8wgzfh22hr3z6mp4jm3fkacyibds4jj5xx5yymbm8wj9";
2017-07-25 11:25:50 +00:00
};
2017-02-09 03:31:31 +00:00
2020-08-10 19:47:53 +00:00
patches = [
(fetchpatch {
url = "https://bitbucket.org/hroptatyr/dateutils/commits/6813ed94534f2311fbe9164748919e39d60b0190/raw";
sha256 = "1zs3iizb172ha56g03rr8kzd8zx6qypiqsc11jw758mliwxk5rgc";
})
];
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;
platforms = platforms.linux;
maintainers = [ maintainers.paperdigits ];
};
}