summary refs log tree commit diff
path: root/pkgs/tools/misc/ddate/default.nix
blob: c602a4c9235ea730f297950e48def98270c669d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f";
  };

  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 = stdenv.lib.platforms.all;
  };
}