1{stdenv, fetchgit, cmake} :
2
3stdenv.mkDerivation {
4 name = "ddate-0.2.2";
5 src = fetchgit {
6 url = "https://github.com/bo0ts/ddate";
7 rev = "refs/tags/v0.2.2";
8 sha256 = "1mv7x8g6ddzspcxghzz5dsxrj0x7bw5hc9yvqbl9va9z7nahwv80";
9 };
10
11 buildInputs = [ cmake ];
12
13 meta = {
14 homepage = https://github.com/bo0ts/ddate;
15 description = "Discordian version of the date program";
16 license = stdenv.lib.licenses.publicDomain;
17 maintainers = with stdenv.lib.maintainers; [kovirobi];
18 platforms = with stdenv.lib.platforms; linux;
19 };
20}