Skip to content
Snippets Groups Projects
Commit 20b43409 authored by Daniel Firth's avatar Daniel Firth
Browse files

bitvec: init at 1.1.3.0

parent 3a60d31f
No related merge requests found
......@@ -93,6 +93,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "base-compat-batteries" "0.12.2"
, callHackage "bifunctors" "5.5.13"
, callHackage "bimap" "0.5.0"
, callHackage "bitvec" "1.1.3.0"
, callHackage "binary-orphans" "1.0.3"
, callHackage "blaze-html" "0.9.1.2"
, callHackage "blaze-markup" "0.8.2.8"
......
......@@ -71,6 +71,8 @@ final: prev: with pkgs.haskell.lib; {
binary-orphans = prev.callPackage (./pkgs/binary-orphans.nix) { };
bitvec = prev.callPackage (./pkgs/bitvec.nix) { };
blaze-html = prev.callPackage (./pkgs/blaze-html.nix) { };
blaze-markup = prev.callPackage (./pkgs/blaze-markup.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, deepseq
, ghc-bignum
, lib
, primitive
, quickcheck-classes
, quickcheck-classes-base
, random
, tasty
, tasty-bench
, tasty-quickcheck
, vector
}:
mkDerivation {
pname = "bitvec";
version = "1.1.3.0";
sha256 = "1c4c3af50a1fcf46e46e2fa9e0493fffaf62de3607ae7553d18015f8a1a60551";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
deepseq
ghc-bignum
primitive
vector
];
testHaskellDepends = [
base
ghc-bignum
primitive
quickcheck-classes
quickcheck-classes-base
tasty
tasty-quickcheck
vector
];
benchmarkHaskellDepends = [
base
containers
ghc-bignum
random
tasty-bench
vector
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/bitvec";
description = "Space-efficient bit vectors";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment