blob: 58b8f9cfe8fc966ff9e0ec2c129298d40e74b442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ mkDerivation, base, bytestring, extra, fetchgit, hspec, lib
, QuickCheck, text, wcwidth
}:
mkDerivation {
pname = "blessings";
version = "2.5.1";
src = fetchgit {
url = "https://cgit.krebsco.de/blessings";
sha256 = "15yjvmzmqhg7ng7zs4llzwbpq6i5p87vbqwj45g2y6zwszqrwy81";
rev = "66d76358a2b38b65d78f4aeb9dcc64a36d56a7f8";
fetchSubmodules = true;
};
libraryHaskellDepends = [ base bytestring extra text wcwidth ];
testHaskellDepends = [ base hspec QuickCheck ];
license = lib.licenses.mit;
}
|