3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages.exhaustive: New expression

This commit is contained in:
Oliver Charles 2015-01-13 13:25:37 +00:00
parent b094768e99
commit 304819b3a3
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, genericsSop, transformers }:
cabal.mkDerivation (self: {
pname = "exhaustive";
version = "1.1.0";
sha256 = "14pdf5iks0j2vpg3w48qs32lnj8ahkd0jljjhx1qap66mss0i3jl";
buildDepends = [ genericsSop transformers ];
meta = {
homepage = "http://github.com/ocharles/exhaustive";
description = "Compile time checks that a computation considers producing data through all possible constructors";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -826,6 +826,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
eventList = callPackage ../development/libraries/haskell/event-list {};
exhaustive = callPackage ../development/libraries/haskell/exhaustive {};
exPool = callPackage ../development/libraries/haskell/ex-pool {};
exceptionMtl = callPackage ../development/libraries/haskell/exception-mtl {};