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

20 lines
579 B
Nix
Raw Normal View History

2017-02-09 04:31:31 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "0.4.1";
name = "dateutils-${version}";
2017-07-25 13:25:50 +02:00
src = fetchurl {
2017-02-09 04:31:31 +01:00
url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
sha256 = "0y2jsmvilljbid14lzmk3kgvasn4h7hr6y3wwbr3lkgwfn4y9k3c";
2017-07-25 13:25:50 +02:00
};
2017-02-09 04:31:31 +01: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 ];
};
}