mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
23 lines
579 B
Nix
23 lines
579 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "sdate";
|
|
version = "0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ChristophBerg";
|
|
repo = "sdate";
|
|
rev = version;
|
|
hash = "sha256-jkwe+bSBa0p1Xzfetsdpw0RYw/gSRxnY2jBOzC5HtJ8=";
|
|
};
|
|
|
|
buildInputs = [ autoreconfHook ];
|
|
|
|
meta = {
|
|
homepage = "https://www.df7cb.de/projects/sdate";
|
|
description = "Eternal september version of the date program";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ edef ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|