blob: 65661aabdcfc5a559c186ea59663281ad8c8ce44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ mkDerivation, base, bytestring, fetchgit, hspec, QuickCheck, lib, mylib, text }:
mkDerivation {
pname = "blessings";
version = "2.3.0";
src = fetchgit {
url = http://cgit.ni.krebsco.de/blessings;
rev = "refs/tags/v2.3.0";
hash = "sha256-fS79UOHBMfJHyz7E0Rx4lKZSZOD2G99h2zuDT+SOUJQ=";
};
libraryHaskellDepends = [ base bytestring text ];
testHaskellDepends = [ base hspec QuickCheck ];
doHaddock = false;
# WTFPL is the true license, which is unknown to cabal.
license = lib.licenses.wtfpl;
}
|