summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell-overrides/blessings.nix
blob: 311458211654a19404430d21559ca14e9c349fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ mkDerivation, base, fetchgit, stdenv }:
mkDerivation {
  pname = "blessings";
  version = "1.0.0";
  src = fetchgit {
    url = http://cgit.cd.retiolum/blessings;
    rev = "25a510dcb38ea9158e9969d56eb66cb1b860ab5f";
    sha256 = "b962153e80e51519b52220199d8350b54154833e4bc25a792ecc58898fef3fb2";
  };
  libraryHaskellDepends = [ base ];
  doHaddock = false;
  # WTFPL is the true license, which is unknown to cabal.
  license = stdenv.lib.licenses.wtfpl;
}