mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
sdate: init at 0.5
This commit is contained in:
parent
9276a2749f
commit
574700085a
19
pkgs/tools/misc/sdate/default.nix
Normal file
19
pkgs/tools/misc/sdate/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
with import <nixpkgs> {};
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sdate-${version}";
|
||||
version = "0.5";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ChristophBerg/sdate/archive/${version}.tar.gz";
|
||||
sha256 = "0gbjl1jfxjwiiwf9rz38yp6rb1mgzhawcyg0g9byl6m4kgivf0cx";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = {
|
||||
homepage = https://www.df7cb.de/projects/sdate;
|
||||
description = "Eternal september version of the date program";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [ edef ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
@ -5360,6 +5360,8 @@ in
|
||||
|
||||
scrypt = callPackage ../tools/security/scrypt { };
|
||||
|
||||
sdate = callPackage ../tools/misc/sdate { };
|
||||
|
||||
sdcv = callPackage ../applications/misc/sdcv { };
|
||||
|
||||
sdl-jstest = callPackage ../tools/misc/sdl-jstest { };
|
||||
|
Loading…
Reference in New Issue
Block a user