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

26 lines
762 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
2017-02-09 03:31:31 +00:00
stdenv.mkDerivation rec {
2021-05-07 19:34:11 +00:00
version = "0.4.8";
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";
2021-05-07 19:34:11 +00:00
sha256 = "0061f36axskm7yq9cp64x5a5phil8d3zgcd668nfmqzk9ji58w1z";
2017-07-25 11:25:50 +00:00
};
2017-02-09 03:31:31 +00:00
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 ];
};
}