stockholm/krebs/5pkgs/haskell-overrides/blessings.nix

15 lines
451 B
Nix
Raw Normal View History

2015-10-17 03:50:58 +00:00
{ mkDerivation, base, fetchgit, stdenv }:
mkDerivation {
pname = "blessings";
version = "1.0.0";
src = fetchgit {
2016-11-10 22:15:33 +00:00
url = http://cgit.ni.krebsco.de/blessings;
2015-10-17 03:50:58 +00:00
rev = "25a510dcb38ea9158e9969d56eb66cb1b860ab5f";
2016-10-06 17:16:42 +00:00
sha256 = "0xg329h1y68ndg4w3m1jp38pkg3gqg7r19q70gqqj4mswb6qcrqc";
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;
}