2015-10-17 03:50:58 +00:00
|
|
|
{ mkDerivation, base, fetchgit, stdenv }:
|
2016-11-22 17:55:28 +00:00
|
|
|
mkDerivation rec {
|
2015-10-17 03:50:58 +00:00
|
|
|
pname = "blessings";
|
2016-11-22 17:55:28 +00:00
|
|
|
version = "1.1.0";
|
2015-10-17 03:50:58 +00:00
|
|
|
src = fetchgit {
|
2016-11-10 22:15:33 +00:00
|
|
|
url = http://cgit.ni.krebsco.de/blessings;
|
2016-11-22 17:55:28 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "1k908zap3694fcxdk4bb29s54b0lhdh557y10ybjskfwnym7szn1";
|
2015-10-17 03:50:58 +00:00
|
|
|
};
|
|
|
|
libraryHaskellDepends = [ base ];
|
|
|
|
doHaddock = false;
|
|
|
|
# WTFPL is the true license, which is unknown to cabal.
|
|
|
|
license = stdenv.lib.licenses.wtfpl;
|
|
|
|
}
|