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

inspection-testing: init at 0.5

parent cbb7257a
No related merge requests found
......@@ -308,6 +308,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "indexed-traversable" "0.1.2"
, callHackage "indexed-traversable-instances" "0.1.1.1"
, callHackage "infer-license" "0.2.0"
, callHackage "inspection-testing" "0.5"
, callHackage "integer-logarithms" "1.0.3.1"
, callHackage "invariant" "0.6"
, callHackage "ipynb" "0.2"
......
......@@ -385,6 +385,8 @@ final: prev: with pkgs.haskell.lib; {
infer-license = prev.callPackage (./pkgs/infer-license.nix) { };
inspection-testing = prev.callPackage (./pkgs/inspection-testing.nix) { };
integer-logarithms = prev.callPackage (./pkgs/integer-logarithms.nix) { };
invariant = prev.callPackage (./pkgs/invariant.nix) { };
......
{ mkDerivation
, base
, containers
, ghc
, lib
, mtl
, template-haskell
, transformers
}:
mkDerivation {
pname = "inspection-testing";
version = "0.5";
sha256 = "b071b714006f7980a2d71ff8bf24cf33289e334a540f4e3121fcb094a6dd5cc5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
ghc
mtl
template-haskell
transformers
];
testHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nomeata/inspection-testing";
description = "GHC plugin to do inspection testing";
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