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

vector-binary-instances: init at 0.2.5.2

parent 2759c9a4
No related merge requests found
......@@ -643,6 +643,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "vault" "0.3.1.5"
, callHackage "vector" "0.13.0.0"
, callHackage "vector-algorithms" "0.9.0.1"
, callHackage "vector-binary-instances" "0.2.5.2"
, callHackage "vector-instances" "3.4"
, callHackage "vector-th-unbox" "0.2.2"
, callHackage "vec" "0.4.1"
......
......@@ -903,6 +903,8 @@ final: prev: with pkgs.haskell.lib; {
vector-algorithms = prev.callPackage (./pkgs/vector-algorithms.nix) { };
vector-binary-instances = prev.callPackage (./pkgs/vector-binary-instances.nix) { };
vector-instances = prev.callPackage (./pkgs/vector-instances.nix) { };
vector-th-unbox = prev.callPackage (./pkgs/vector-th-unbox.nix) { };
......
{ mkDerivation
, base
, binary
, bytestring
, deepseq
, lib
, tasty
, tasty-bench
, tasty-quickcheck
, vector
}:
mkDerivation {
pname = "vector-binary-instances";
version = "0.2.5.2";
sha256 = "b72e3b2109a02c75cb8f07ef0aabba0dba6ec0148e21321a0a2b2197c9a2f54d";
revision = "2";
editedCabalFile = "149gn5n722r2skj5w46av3944fbw3882qkaydq7asm6zx5kc0nj6";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base binary vector ];
testHaskellDepends = [ base binary tasty tasty-quickcheck vector ];
benchmarkHaskellDepends = [
base
binary
bytestring
deepseq
tasty-bench
vector
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/bos/vector-binary-instances";
description = "Instances of Data.Binary for vector";
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