Merge pull request #2409 from fmap/haskell-bv

Derivation for the Haskell library, "bv".
This commit is contained in:
Oliver Charles 2014-04-26 09:56:20 +01:00
commit b50c525e69
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal }:
cabal.mkDerivation (self: {
pname = "bv";
version = "0.2.2";
sha256 = "0d5hscjakp7dwifa4l8xikyip45y402kf9pbmpfmmnybja23zhg0";
isLibrary = true;
isExecutable = true;
meta = {
homepage = "http://bitbucket.org/iago/bv-haskell";
description = "Bit-vector arithmetic library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -687,6 +687,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
boomerang = callPackage ../development/libraries/haskell/boomerang {};
bv = callPackage ../development/libraries/haskell/bv {};
byteable = callPackage ../development/libraries/haskell/byteable {};
bytedump = callPackage ../development/libraries/haskell/bytedump {};