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

20 lines
577 B
Nix
Raw Normal View History

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