summaryrefslogtreecommitdiffstats
path: root/pkgs/haskell/blessings.nix
blob: 9ed1664e7b81efdef4dd795dc5abae60f8b2c65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, base, dlist, extra, fetchgit, hspec, lib
, mono-traversable, QuickCheck, seq2, text
}:
mkDerivation {
  pname = "blessings";
  version = "3.0.0";
  src = fetchgit {
    url = "https://cgit.krebsco.de/blessings";
    sha256 = "1x4wa9v9kgd8z11pxf9clsbk1527bqq86zvk1mp26dzwkbw8kgpk";
    rev = "2e33bc5ac86c81f0c9ee823b4913bce776ba5a0d";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [
    base dlist extra mono-traversable seq2 text
  ];
  testHaskellDepends = [ base hspec mono-traversable QuickCheck ];
  license = lib.licenses.mit;
}