3
0
Fork 0
forked from mirrors/nixpkgs

Added program ddate, discordian date.

ddate converts normal dates to Discordian dates
This commit is contained in:
Kovacsics Robert (rmk35) 2014-12-31 16:57:21 +00:00
parent 8281ef1231
commit 5afa961605
2 changed files with 22 additions and 0 deletions

View 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;
};
}

View file

@ -693,6 +693,8 @@ let
datamash = callPackage ../tools/misc/datamash { };
ddate = callPackage ../tools/misc/ddate { };
direnv = callPackage ../tools/misc/direnv { };
discount = callPackage ../tools/text/discount { };