3
0
Fork 0
forked from mirrors/nixpkgs

haskell-newtype: New package in version 0.2.

This package is required by diagrams-lib.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Acked-by: Peter Simons <simons@cryp.to>
This commit is contained in:
aszlig 2012-09-05 13:09:44 +02:00
parent 6e0924ca84
commit d12f707f6c
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "newtype";
version = "0.2";
sha256 = "0ng4i5r73256gzwl6bw57h0abqixj783c3ggph1hk2wsplx0655p";
meta = {
description = "A typeclass and set of functions for working with newtypes";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1119,6 +1119,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
networkConduit = callPackage ../development/libraries/haskell/network-conduit {};
newtype = callPackage ../development/libraries/haskell/newtype {};
nonNegative = callPackage ../development/libraries/haskell/non-negative {};
numericPrelude = callPackage ../development/libraries/haskell/numeric-prelude {};