2021-01-15 12:19:50 +03:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook }:
|
2019-01-01 14:50:01 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
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 = {
|
2020-04-01 04:11:51 +03:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|