1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 version = "0.4.2";
5 name = "dateutils-${version}";
6
7 src = fetchurl {
8 url = "https://bitbucket.org/hroptatyr/dateutils/downloads/${name}.tar.xz";
9 sha256 = "0sxl5rz9rw02dfn5mdww378hjgnnbxavs52viyfyx620b29finpc";
10 };
11
12 meta = with stdenv.lib; {
13 description = "A bunch of tools that revolve around fiddling with dates and times in the command line";
14 homepage = http://www.fresse.org/dateutils/;
15 license = licenses.bsd3;
16 platforms = platforms.linux;
17 maintainers = [ maintainers.paperdigits ];
18 };
19}