Merge pull request #2409 from fmap/haskell-bv
Derivation for the Haskell library, "bv".
This commit is contained in:
commit
b50c525e69
15
pkgs/development/libraries/haskell/bv/default.nix
Normal file
15
pkgs/development/libraries/haskell/bv/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user