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

persistent-test: init at 2.13.1.3

parent 7f802d86
No related merge requests found
......@@ -286,6 +286,7 @@ let otherLibraries =
(None H.Subdir)
, H.callHackage "optparse-generic" "1.4.8"
, H.callHackage "partial-order" "0.2.0.0"
, H.callHackage "persistent-test" "2.13.1.3"
, H.callHackage "pipes-safe" "2.3.4"
, H.callGit
"prettyprinter-configurable"
......
......@@ -257,6 +257,8 @@ final: prev: with pkgs.haskell.lib; {
partial-order = final.callPackage (./pkgs/partial-order.nix) { };
persistent-test = final.callPackage (./pkgs/persistent-test.nix) { };
pipes-safe = final.callPackage (./pkgs/pipes-safe.nix) { };
plutus-core = final.callPackage (./pkgs/plutus-core.nix) { };
......
{ mkDerivation
, HUnit
, QuickCheck
, aeson
, base
, blaze-html
, bytestring
, conduit
, containers
, exceptions
, hspec
, hspec-expectations
, http-api-data
, lib
, monad-control
, monad-logger
, mtl
, path-pieces
, persistent
, quickcheck-instances
, random
, resourcet
, text
, time
, transformers
, transformers-base
, unliftio
, unliftio-core
, unordered-containers
}:
mkDerivation {
pname = "persistent-test";
version = "2.13.1.3";
sha256 = "b465189ea0935ce35ad58065205f750da9403c98a8cd3920e9ce5e4c2d001b63";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
blaze-html
bytestring
conduit
containers
exceptions
hspec
hspec-expectations
http-api-data
HUnit
monad-control
monad-logger
mtl
path-pieces
persistent
QuickCheck
quickcheck-instances
random
resourcet
text
time
transformers
transformers-base
unliftio
unliftio-core
unordered-containers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/persistent";
description = "Tests for Persistent";
license = lib.licenses.mit;
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