lol
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 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f";
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 = stdenv.lib.platforms.all;
19 };
20}