Derivation for the Haskell library, "bv".

This commit is contained in:
vi 2014-04-26 16:17:04 +08:00
parent d733b49385
commit 74efbde57c
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 {};