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

20 lines
577 B
Nix
Raw Normal View History

2021-01-15 12:19:50 +03:00
{ lib, stdenv, fetchurl, autoreconfHook }:
2019-01-01 14:50:01 +03:00
stdenv.mkDerivation rec {
pname = "sdate";
2020-06-06 21:09:39 +03:00
version = "0.7";
2019-01-01 14:50:01 +03:00
src = fetchurl {
url = "https://github.com/ChristophBerg/sdate/archive/${version}.tar.gz";
2020-06-06 21:09:39 +03:00
sha256 = "1lfnsb8prac8rspnxcawd138jyhyivwf35rrmfvwq6dhsx23c6vy";
2019-01-01 14:50:01 +03:00
};
buildInputs = [ autoreconfHook ];
meta = {
homepage = "https://www.df7cb.de/projects/sdate";
2019-01-01 14:50:01 +03:00
description = "Eternal september version of the date program";
2021-01-15 12:19:50 +03:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ edef ];
platforms = lib.platforms.all;
2019-01-01 14:50:01 +03:00
};
}