nixpkgs/pkgs/development/libraries/haskell/hybrid-vectors/default.nix
Thomas Tuegel 5b421f7bdb Add Haskell packages 'hybrid-vectors' and 'sparse'.
Also, disable the test suite of 'linear' which fails running the doctests.
2014-02-07 10:04:38 +01:00

15 lines
461 B
Nix

{ cabal, deepseq, primitive, vector }:
cabal.mkDerivation (self: {
pname = "hybrid-vectors";
version = "0.1";
sha256 = "0a5ry6xmkr0zjz0kp7qbm7kdz5yr9842gy116902djppmdn5dq05";
buildDepends = [ deepseq primitive vector ];
meta = {
homepage = "http://github.com/ekmett/hybrid-vectors";
description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})