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