9 stdenv.mkDerivation rec {
14 url = "https://bitbucket.org/hroptatyr/dateutils/downloads/dateutils-${version}.tar.xz";
15 sha256 = "sha256-uP6gsJcUu63yArmzQ0zOa1nCgueGkmjQwIuFiA/btEY=";
18 # https://github.com/hroptatyr/dateutils/issues/148
19 postPatch = "rm test/dzone.008.ctst";
21 nativeBuildInputs = [ autoreconfHook ];
22 buildInputs = [ tzdata ]; # needed for datezone
23 enableParallelBuilding = true;
28 description = "Bunch of tools that revolve around fiddling with dates and times in the command line";
29 homepage = "http://www.fresse.org/dateutils/";
30 license = licenses.bsd3;
31 platforms = platforms.unix;
32 maintainers = [ maintainers.paperdigits ];