about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/testing-feat/default.nix
blob: 5e6a8177d1a147395f7e42100bc20ff155adcfde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, mtl, QuickCheck, tagshare }:

cabal.mkDerivation (self: {
  pname = "testing-feat";
  version = "0.4.0.1";
  sha256 = "1fqp5k8kwnn7qqggyy5scsxmkvd1pibc5sfs7v1myrp0azkc25cp";
  buildDepends = [ mtl QuickCheck tagshare ];
  meta = {
    description = "Functional Enumeration of Algebraic Types";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})