Skip to content
Snippets Groups Projects
multiset.nix 845 B
Newer Older
{ mkDerivation, QuickCheck, base, checkers, containers, deepseq
, doctest, lib, tasty, tasty-quickcheck
}:
mkDerivation {
  pname = "multiset";
  version = "0.3.4.3";
  sha256 = "79fcae15a5d3ce28f0b973ad90290f7451396e81cc92007456ce2bb49b9415c4";
  revision = "1";
  editedCabalFile = "0wkwvavc75q7g7gjxh7jc4cla65ys8136jf14g3ifma5vy3wafs5";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [ base containers deepseq ];
  testHaskellDepends = [
    base checkers doctest QuickCheck tasty tasty-quickcheck
  ];
Daniel Firth's avatar
Daniel Firth committed
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = true;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  description = "The Data.MultiSet container type";
  license = lib.licenses.bsd3;
  broken = false;
}