haskellPackages.unboundGenerics: new expression
This commit is contained in:
parent
cded93d25d
commit
aefdaaa098
|
@ -0,0 +1,17 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, contravariant, mtl, tasty, tastyHunit, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "unbound-generics";
|
||||
version = "0.0.1";
|
||||
sha256 = "0iwg1292dpwl8icr8p4nyhns4n0r44q8wv4l22j6i9m61li68al1";
|
||||
buildDepends = [ contravariant mtl transformers ];
|
||||
testDepends = [ mtl tasty tastyHunit ];
|
||||
meta = {
|
||||
homepage = "http://github.com/lambdageek/unbound-generics";
|
||||
description = "Reimplementation of Unbound using GHC Generics";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2655,6 +2655,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
unboundedDelays = callPackage ../development/libraries/haskell/unbounded-delays {};
|
||||
|
||||
unboundGenerics = callPackage ../development/libraries/haskell/unbound-generics {};
|
||||
|
||||
unificationFd = callPackage ../development/libraries/haskell/unification-fd {};
|
||||
|
||||
unionFind = callPackage ../development/libraries/haskell/union-find {};
|
||||
|
|
Loading…
Reference in New Issue