Skip to content
Snippets Groups Projects
exact-combinatorics.nix 656 B
Newer Older
{ mkDerivation, base, lib }:
mkDerivation {
  pname = "exact-combinatorics";
  version = "0.2.0.11";
  sha256 = "76b44a9ddcc34204b2589c789d33bb6ac31c6cadf1771599b3575264487b3063";
  isLibrary = true;
  isExecutable = false;
  enableSeparateDataOutput = false;
  libraryHaskellDepends = [ base ];
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = false;
  jailbreak = true;
  doCheck = false;
  doBenchmark = false;
  hyperlinkSource = false;
  homepage = "https://wrengr.org/software/hackage.html";
  description = "Efficient exact computation of combinatoric functions";
  license = lib.licenses.bsd3;
  broken = false;
}