aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/misc/ddate/default.nix
blob: 04a89ec3dd0fa726c96e40debf40cc930e0b2a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchFromGitHub, cmake} :

stdenv.mkDerivation rec {
  pname = "ddate";
  version = "0.2.2";

  src = fetchFromGitHub {
    owner = "bo0ts";
    repo = pname;
    rev = "refs/tags/v${version}";
    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;
  };
}