about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bv/default.nix
blob: d99779f8cd437494b155f3b9bdf9a0b4c914f61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  };
})