forked from mirrors/nixpkgs
haskellPackages.exhaustive: New expression
This commit is contained in:
parent
b094768e99
commit
304819b3a3
16
pkgs/development/libraries/haskell/exhaustive/default.nix
Normal file
16
pkgs/development/libraries/haskell/exhaustive/default.nix
Normal 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;
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue