29 lines
772 B
Nix
29 lines
772 B
Nix
{ mkDerivation, base, fetchgit, hspec, QuickCheck, lib, stockholm, text }:
|
|
with stockholm.lib;
|
|
|
|
let
|
|
cfg = {
|
|
"18.03" = {
|
|
version = "1.1.0";
|
|
sha256 = "1k908zap3694fcxdk4bb29s54b0lhdh557y10ybjskfwnym7szn1";
|
|
};
|
|
}.${versions.majorMinor version} or {
|
|
version = "2.2.0";
|
|
sha256 = "1pb56dgf3jj2kq3cbbppwzyg3ccgqy9xara62hkjwyxzdx20clk1";
|
|
};
|
|
|
|
in mkDerivation {
|
|
pname = "blessings";
|
|
version = cfg.version;
|
|
src = fetchgit {
|
|
url = http://cgit.ni.krebsco.de/blessings;
|
|
rev = "refs/tags/v${cfg.version}";
|
|
sha256 = cfg.sha256;
|
|
};
|
|
libraryHaskellDepends = [ base text ];
|
|
testHaskellDepends = [ base hspec QuickCheck ];
|
|
doHaddock = false;
|
|
# WTFPL is the true license, which is unknown to cabal.
|
|
license = lib.licenses.wtfpl;
|
|
}
|