Skip to content
Snippets Groups Projects
Commit e404ea9a authored by Max Tomago's avatar Max Tomago
Browse files

partial-order: init at 0.2.0.0

parent 7bb0755c
Branches
No related merge requests found
...@@ -183,6 +183,7 @@ in [ callHackage "PyF" "0.11.0.0" ...@@ -183,6 +183,7 @@ in [ callHackage "PyF" "0.11.0.0"
"https://github.com/locallycompact/nothunks" "https://github.com/locallycompact/nothunks"
(Some "0d7e3565407aa4eb21d861d075dff6f20d090f97") (Some "0d7e3565407aa4eb21d861d075dff6f20d090f97")
(None Text) (None Text)
, callHackage "partial-order" "0.2.0.0"
, callCabal2nix , callCabal2nix
"plutus-core" "plutus-core"
"https://github.com/milloni/plutus" "https://github.com/milloni/plutus"
......
...@@ -107,6 +107,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -107,6 +107,8 @@ final: prev: with pkgs.haskell.lib; {
nothunks = prev.callPackage (./pkgs/nothunks.nix) { }; nothunks = prev.callPackage (./pkgs/nothunks.nix) { };
partial-order = prev.callPackage (./pkgs/partial-order.nix) { };
plutus-core = prev.callPackage (./pkgs/plutus-core.nix) { }; plutus-core = prev.callPackage (./pkgs/plutus-core.nix) { };
plutus-ledger-api = prev.callPackage (./pkgs/plutus-ledger-api.nix) { }; plutus-ledger-api = prev.callPackage (./pkgs/plutus-ledger-api.nix) { };
......
{ mkDerivation
, base
, containers
, HUnit
, lib
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "partial-order";
version = "0.2.0.0";
sha256 = "b25fb46335d11e9a9201d6a3685bff94e13ab73baf7f99eb770218ad1edcc5c8";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base
containers
HUnit
test-framework
test-framework-hunit
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mtesseract/haskell-partial-order";
description = "Provides typeclass suitable for types admitting a partial order";
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