haskellPackages.nonEmpty: New expression

This commit is contained in:
Oliver Charles 2015-01-06 15:05:10 +00:00
parent ce59dec5bb
commit 302f056f91
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, QuickCheck, utilityHt }:
cabal.mkDerivation (self: {
pname = "non-empty";
version = "0.2";
sha256 = "1wapx5q8spvlq8g7nagj2lwhrqzg90dw4n0qvd1ap47n0rh3iymm";
buildDepends = [ QuickCheck utilityHt ];
meta = {
homepage = "http://code.haskell.org/~thielema/non-empty/";
description = "List-like structures with static restrictions on the number of elements";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1878,6 +1878,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
newtype = callPackage ../development/libraries/haskell/newtype {};
nonEmpty = callPackage ../development/libraries/haskell/non-empty {};
nonNegative = callPackage ../development/libraries/haskell/non-negative {};
numericExtras = callPackage ../development/libraries/haskell/numeric-extras {};