mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-30 23:34:12 +03:00
Merge pull request #5528 from KoviRobi/ddate
Added program ddate, discordian date.
This commit is contained in:
commit
b4f4291a59
20
pkgs/tools/misc/ddate/default.nix
Normal file
20
pkgs/tools/misc/ddate/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{stdenv, fetchgit, cmake} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ddate-0.2.2";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/bo0ts/ddate";
|
||||
rev = "refs/tags/v0.2.2";
|
||||
sha256 = "1mv7x8g6ddzspcxghzz5dsxrj0x7bw5hc9yvqbl9va9z7nahwv80";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/bo0ts/ddate;
|
||||
description = "Discordian version of the date program";
|
||||
license = stdenv.lib.licenses.publicDomain;
|
||||
maintainers = with stdenv.lib.maintainers; [kovirobi];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -695,6 +695,8 @@ let
|
||||
|
||||
datamash = callPackage ../tools/misc/datamash { };
|
||||
|
||||
ddate = callPackage ../tools/misc/ddate { };
|
||||
|
||||
direnv = callPackage ../tools/misc/direnv { };
|
||||
|
||||
discount = callPackage ../tools/text/discount { };
|
||||
|
Loading…
Reference in New Issue
Block a user