Skip to content
Snippets Groups Projects
Commit a0480d3f authored by Ben Gamari's avatar Ben Gamari :turtle:
Browse files

nix: Use doctest from Hackage

parent e20773f4
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ let
transformers = null;
unix = null;
doctest = haskellPackages.callPackage ./doctest.nix {};
doctest = haskellPackages.callHackage "doctest" "0.16.0" {};
http-api-data = haskellPackages.callPackage ./http-api-data.nix {};
tagged = self1.callHackage "tagged" "0.8.6" {};
......
{ mkDerivation, base, base-compat, code-page, deepseq, directory
, filepath, ghc, ghc-paths, hspec, HUnit, mockery, process
, QuickCheck, setenv, silently, stdenv, stringbuilder, syb
, transformers, with-location
}:
mkDerivation {
pname = "doctest";
version = "0.16.0";
sha256 = "bb49a6781b6deda4eaa9cc3e3b515f245e4b23c4eb403316b873e86220636c42";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base base-compat code-page deepseq directory filepath ghc ghc-paths
process syb transformers
];
executableHaskellDepends = [
base base-compat code-page deepseq directory filepath ghc ghc-paths
process syb transformers
];
testHaskellDepends = [
base base-compat code-page deepseq directory filepath ghc ghc-paths
hspec HUnit mockery process QuickCheck setenv silently
stringbuilder syb transformers with-location
];
homepage = "https://github.com/sol/doctest#readme";
description = "Test interactive Haskell examples";
license = stdenv.lib.licenses.mit;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment