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

ouroboros-network-testing: init at 0.2.0.0

parent 2a3f2747
No related merge requests found
......@@ -183,6 +183,7 @@ let otherLibraries =
"https://github.com/input-output-hk/optparse-applicative/"
"7497a29cb998721a9068d5725d49461f2bba0e7a"
(None H.Subdir)
, ouroboros-network-testing = callCHaP "ouroboros-network-testing" "0.2.0.0"
, prettyprinter-configurable =
H.callGit
"https://github.com/milloni/plutus"
......
......@@ -103,6 +103,8 @@ final: prev: with pkgs.haskell.lib; {
optparse-applicative-fork = final.callPackage (./pkgs/optparse-applicative-fork.nix) { };
ouroboros-network-testing = final.callPackage (./pkgs/ouroboros-network-testing.nix) { };
plutus-core = final.callPackage (./pkgs/plutus-core.nix) { };
plutus-ledger-api = final.callPackage (./pkgs/plutus-ledger-api.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, cborg
, containers
, contra-tracer
, deque
, fetchzip
, io-classes
, io-sim
, lib
, network-mux
, psqueues
, serialise
, tasty
, tasty-expected-failure
, tasty-quickcheck
}:
mkDerivation {
pname = "ouroboros-network-testing";
version = "0.2.0.0";
src = fetchzip {
url = "https://input-output-hk.github.io/cardano-haskell-packages/package/ouroboros-network-testing-0.2.0.0.tar.gz";
sha256 = "1cdmzrl1bx4rdyfb273m9lblzbbn9hzppzayq5yn2q4g30adjf7b";
};
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
cborg
containers
contra-tracer
deque
io-classes
io-sim
network-mux
psqueues
QuickCheck
serialise
tasty
tasty-expected-failure
];
testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Common modules used for testing in ouroboros-network and ouroboros-consensus";
license = lib.licenses.asl20;
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