1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

+ blessings

This commit is contained in:
Kierán Meinhardt
2019-02-26 23:25:06 +01:00
parent aadd7c5f46
commit 6ebc0e2ed2
2 changed files with 18 additions and 1 deletions

14
packages/blessings.nix Normal file
View File

@@ -0,0 +1,14 @@
{ 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;
}