Skip to content
Snippets Groups Projects
Commit 993af644 authored by Daniel Firth's avatar Daniel Firth
Browse files

exact-combinatorics: init at 0.2.0.11

parent 625f67ae
No related merge requests found
...@@ -173,6 +173,7 @@ let otherLibraries = ...@@ -173,6 +173,7 @@ let otherLibraries =
, H.callHackage "doctest-discover" "0.2.0.0" , H.callHackage "doctest-discover" "0.2.0.0"
, H.callHackage "dom-lt" "0.2.3" , H.callHackage "dom-lt" "0.2.3"
, H.callHackage "errors" "2.3.0" , H.callHackage "errors" "2.3.0"
, H.callHackage "exact-combinatorics" "0.2.0.11"
, H.callHackage "filelock" "0.1.1.5" , H.callHackage "filelock" "0.1.1.5"
, H.callHackage "finite-typelits" "0.1.6.0" , H.callHackage "finite-typelits" "0.1.6.0"
, H.callGit , H.callGit
......
...@@ -123,6 +123,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -123,6 +123,8 @@ final: prev: with pkgs.haskell.lib; {
errors = final.callPackage (./pkgs/errors.nix) { }; errors = final.callPackage (./pkgs/errors.nix) { };
exact-combinatorics = final.callPackage (./pkgs/exact-combinatorics.nix) { };
filelock = final.callPackage (./pkgs/filelock.nix) { }; filelock = final.callPackage (./pkgs/filelock.nix) { };
finite-typelits = final.callPackage (./pkgs/finite-typelits.nix) { }; finite-typelits = final.callPackage (./pkgs/finite-typelits.nix) { };
......
{ 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;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment