2021-09-19 17:57:09 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2021-10-12 19:00:29 +01:00
|
|
|
|
2019-01-01 11:50:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sdate";
|
2020-06-06 19:09:39 +01:00
|
|
|
version = "0.7";
|
2021-09-19 17:57:09 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ChristophBerg";
|
|
|
|
repo = "sdate";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-jkwe+bSBa0p1Xzfetsdpw0RYw/gSRxnY2jBOzC5HtJ8=";
|
2019-01-01 11:50:01 +00:00
|
|
|
};
|
|
|
|
|
2021-10-12 19:00:29 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2019-01-01 11:50:01 +00:00
|
|
|
|
2021-10-12 19:00:29 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01: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-10-12 19:00:29 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ edef ];
|
|
|
|
platforms = platforms.all;
|
2019-01-01 11:50:01 +00:00
|
|
|
};
|
|
|
|
}
|