mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
15 lines
478 B
Nix
15 lines
478 B
Nix
{ mkDerivation, base, fetchgit, hspec, QuickCheck, stdenv, text }:
|
|
mkDerivation {
|
|
pname = "blessings";
|
|
version = "2.2.0";
|
|
src = fetchgit {
|
|
url = "https://cgit.krebsco.de/blessings";
|
|
sha256 = "1pb56dgf3jj2kq3cbbppwzyg3ccgqy9xara62hkjwyxzdx20clk1";
|
|
rev = "d94712a015636efe7ec79bc0a2eec6739d0be779";
|
|
fetchSubmodules = true;
|
|
};
|
|
libraryHaskellDepends = [ base text ];
|
|
testHaskellDepends = [ base hspec QuickCheck ];
|
|
license = stdenv.lib.licenses.mit;
|
|
}
|