mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
573 B
Nix
24 lines
573 B
Nix
{ lib, 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/bo0ts/ddate";
|
|
description = "Discordian version of the date program";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ kovirobi ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|