summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bitarray/default.nix
blob: edda97480d8c51a4605e06b74faa32ac406577e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal }:

cabal.mkDerivation (self: {
  pname = "bitarray";
  version = "0.0.1";
  sha256 = "01ijysisw70zaw70hx851axw48agfamdqj21rzzhdqd2ww6bwchb";
  meta = {
    homepage = "http://code.haskell.org/~bkomuves/";
    description = "Mutable and immutable bit arrays";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})