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

doctest-exitcode-stdio: init at 0.0

parent 2ef79c6f
Branches
Tags
No related merge requests found
...@@ -243,6 +243,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -243,6 +243,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "distributive" "0.6.2.1" , callHackage "distributive" "0.6.2.1"
, callHackage "dlist" "1.0" , callHackage "dlist" "1.0"
, callHackage "doclayout" "0.4" , callHackage "doclayout" "0.4"
, callHackage "doctest-exitcode-stdio" "0.0"
, callCabal2nix , callCabal2nix
"doctest" "doctest"
"https://github.com/sol/doctest" "https://github.com/sol/doctest"
......
...@@ -335,6 +335,8 @@ self: with pkgs.haskell.lib; { ...@@ -335,6 +335,8 @@ self: with pkgs.haskell.lib; {
doctest = self.callPackage (./pkgs/doctest.nix) { }; doctest = self.callPackage (./pkgs/doctest.nix) { };
doctest-exitcode-stdio = self.callPackage (./pkgs/doctest-exitcode-stdio.nix) { };
doctest-parallel = self.callPackage (./pkgs/doctest-parallel.nix) { }; doctest-parallel = self.callPackage (./pkgs/doctest-parallel.nix) { };
dotgen = self.callPackage (./pkgs/dotgen.nix) { }; dotgen = self.callPackage (./pkgs/dotgen.nix) { };
......
{ mkDerivation
, base
, doctest-lib
, lib
, QuickCheck
, semigroups
, transformers
}:
mkDerivation {
pname = "doctest-exitcode-stdio";
version = "0.0";
sha256 = "1dec779d5e67ea46c8b0d69d454e0717383654e87323bdebc2bc0a8cb33f6cbc";
revision = "1";
editedCabalFile = "1065s8bch6zhl6mc8nhvfpwd1irmjd04z7xgycbpihc14x4ijim3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
doctest-lib
QuickCheck
semigroups
transformers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://hub.darcs.net/thielema/doctest-exitcode-stdio/";
description = "Run doctest's in a Cabal.Test.exitcode-stdio environment";
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