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

20 lines
579 B
Nix
Raw Normal View History

2017-02-09 03:31:31 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-08-12 23:01:07 +00:00
version = "0.4.2";
2017-02-09 03:31:31 +00:00
name = "dateutils-${version}";
2017-07-25 11:25:50 +00:00
src = fetchurl {
2017-02-09 03:31:31 +00:00
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
2017-08-12 23:01:07 +00:00
sha256 = "0sxl5rz9rw02dfn5mdww378hjgnnbxavs52viyfyx620b29finpc";
2017-07-25 11:25:50 +00:00
};
2017-02-09 03:31:31 +00:00
meta = with stdenv.lib; {
description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
homepage = http://www.fresse.org/dateutils/;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = [ maintainers.paperdigits ];
};
}