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