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

26 lines
761 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook, tzdata, fetchpatch }:
2017-02-09 04:31:31 +01:00
stdenv.mkDerivation rec {
2021-08-25 05:51:11 +02:00
version = "0.4.9";
pname = "dateutils";
2017-02-09 04:31:31 +01:00
2017-07-25 13:25:50 +02:00
src = fetchurl {
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${pname}-${version}.tar.xz";
2021-08-25 05:51:11 +02:00
sha256 = "1hy96h9imxdbg9y7305mgv4grr6x4qic9xy3vhgh15lvjkcmc0kr";
2017-07-25 13:25:50 +02:00
};
2017-02-09 04:31:31 +01:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ tzdata ]; # needed for datezone
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
2017-02-09 04:31:31 +01: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 04:31:31 +01:00
license = licenses.bsd3;
2021-11-29 01:35:58 +01:00
platforms = platforms.unix;
2017-02-09 04:31:31 +01:00
maintainers = [ maintainers.paperdigits ];
};
}