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

vector-stream: init at 0.1.0.0

parent 5eb1cdda
No related merge requests found
......@@ -895,6 +895,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "vector-algorithms" "0.9.0.1"
, callHackage "vector-binary-instances" "0.2.5.2"
, callHackage "vector-instances" "3.4"
, callHackage "vector-stream" "0.1.0.0"
, callHackage "vector-th-unbox" "0.2.2"
, callHackage "vec" "0.4.1"
, callHackage "vinyl" "0.14.3"
......
......@@ -1427,6 +1427,8 @@ self: with pkgs.haskell.lib; {
vector-instances = self.callPackage (./pkgs/vector-instances.nix) { };
vector-stream = self.callPackage (./pkgs/vector-stream.nix) { };
vector-th-unbox = self.callPackage (./pkgs/vector-th-unbox.nix) { };
vinyl = self.callPackage (./pkgs/vinyl.nix) { };
......
{ mkDerivation, base, ghc-prim, lib }:
mkDerivation {
pname = "vector-stream";
version = "0.1.0.0";
sha256 = "a888210f6467f155090653734be5cc920406a07227e0d3adb59096716fdb806c";
revision = "1";
editedCabalFile = "18sm3vd1qim9r3m40wgvnmcrfz1zl051yy84dffnp4si9vfgic09";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/vector";
description = "Efficient Streams";
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