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

doctest-parallel: init at 0.2.5

parent 293ace0c
Branches
Tags
No related merge requests found
......@@ -181,6 +181,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "4eb97c213acf7abe965a3a1b67397199ed155f3c")
(None Text)
, callHackage "doctemplates" "0.10.0.2"
, callHackage "doctest-parallel" "0.2.5"
, callCabal2nix
"double-conversion"
"https://github.com/haskell/double-conversion"
......
......@@ -189,6 +189,8 @@ final: prev: with pkgs.haskell.lib; {
doctest = prev.callPackage (./pkgs/doctest.nix) { };
doctest-parallel = prev.callPackage (./pkgs/doctest-parallel.nix) { };
double-conversion = prev.callPackage (./pkgs/double-conversion.nix) { };
ed25519 = prev.callPackage (./pkgs/ed25519.nix) { };
......
{ mkDerivation
, base
, base-compat
, Cabal
, code-page
, containers
, deepseq
, directory
, exceptions
, extra
, filepath
, ghc
, ghc-paths
, Glob
, hspec
, hspec-core
, hspec-discover
, HUnit
, lib
, mockery
, pretty
, process
, QuickCheck
, random
, setenv
, silently
, stringbuilder
, syb
, template-haskell
, transformers
, unordered-containers
}:
mkDerivation {
pname = "doctest-parallel";
version = "0.2.5";
sha256 = "ec63fdcb9b26084a52d8603d39745abfcfa621b6c99be66803d8bd4ba927be1c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
base-compat
Cabal
code-page
containers
deepseq
directory
exceptions
extra
filepath
ghc
ghc-paths
Glob
pretty
process
random
syb
template-haskell
transformers
unordered-containers
];
testHaskellDepends = [
base
base-compat
code-page
containers
deepseq
directory
exceptions
filepath
ghc
ghc-paths
hspec
hspec-core
hspec-discover
HUnit
mockery
process
QuickCheck
setenv
silently
stringbuilder
syb
transformers
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/martijnbastiaan/doctest-parallel#readme";
description = "Test interactive Haskell examples";
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