mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
1e7ebac8f9
This package should be able to compile on all plaforms. This change allows Nix to install it on non-Linuxes.
21 lines
545 B
Nix
21 lines
545 B
Nix
{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;
|
|
};
|
|
}
|