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

Merge branch 'pipes' into 'master'

pipes: init at 4.3.16

See merge request !140
parents e7465d5b 45a985be
1 merge request!140pipes: init at 4.3.16
Pipeline #6731 passed with stages
in 46 seconds
......@@ -17,6 +17,9 @@ build:
- composite-base
- hint
- optics
- pipes
- pipes-group
- pipes-parse
- polysemy
- polysemy-plugin
- servant-client
......
......@@ -28,6 +28,9 @@ This package set has the following policy.
* polysemy-plugin
* servant-client
* servant-server
* pipes
* pipes-group
* pipes-parse
* sdl2
* sdl2-gfx
* sdl2-image
......
......@@ -91,6 +91,9 @@ let packages =
, persistent-sqlite = H.callHackage "persistent-sqlite" "2.13.3.0"
, persistent-template = H.callHackage "persistent-template" "2.12.0.0"
, persistent-test = H.callHackage "persistent-test" "2.13.1.3"
, pipes = H.callHackage "pipes" "4.3.16"
, pipes-group = H.callHackage "pipes-group" "1.0.12"
, pipes-parse = H.callHackage "pipes-parse" "3.0.9"
, polyparse = H.callHackage "polyparse" "1.13"
, polysemy = H.callHackage "polysemy" "1.9.1.3"
, polysemy-plugin = H.callHackage "polysemy-plugin" "0.4.5.2"
......
......@@ -310,6 +310,18 @@
, mapValue =
"b5212d560306dbd609a469a86e4e9eecb179166bc6d51215fef32d1469777400"
}
, { mapKey = "pipes"
, mapValue =
"33609f97d1ad3e9648a25e56bc34377a66aef1417ec854bfdd19a098d24eea0c"
}
, { mapKey = "pipes-group"
, mapValue =
"a55f31a360fe5f2604cabac86cedcb99e652942323a875d2d109f0c2d2aa42af"
}
, { mapKey = "pipes-parse"
, mapValue =
"6e18f2c9274a23fdcf5a2b70579b193cd7ebf677026f085f1e31bd91209c6ca1"
}
, { mapKey = "polyparse"
, mapValue =
"e27a06a6468bf68fd16f62fba61c8a8129866dc445b65185d85e476590546062"
......
......@@ -158,6 +158,12 @@ final: prev: with pkgs.haskell.lib; {
persistent-test = f final prev "persistent-test" (final.callPackage (./pkgs/persistent-test.nix) { });
pipes = f final prev "pipes" (final.callPackage (./pkgs/pipes.nix) { });
pipes-group = f final prev "pipes-group" (final.callPackage (./pkgs/pipes-group.nix) { });
pipes-parse = f final prev "pipes-parse" (final.callPackage (./pkgs/pipes-parse.nix) { });
polyparse = f final prev "polyparse" (final.callPackage (./pkgs/polyparse.nix) { });
polysemy = f final prev "polysemy" (final.callPackage (./pkgs/polysemy.nix) { });
......
{ mkDerivation, base, doctest, free, lens-family-core, lib, pipes
, pipes-parse, transformers
}:
mkDerivation {
pname = "pipes-group";
version = "1.0.12";
sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7";
revision = "9";
editedCabalFile = "1i0l182q4gxq29g5w8iv3ywq68dq3gcyhjybfrih0q0cnyz8zxlc";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base free pipes pipes-parse transformers
];
testHaskellDepends = [ base doctest lens-family-core ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Group streams into substreams";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, lib, pipes, transformers }:
mkDerivation {
pname = "pipes-parse";
version = "3.0.9";
sha256 = "a3973f9b01d68cce75d6c5b049fe5dbff6d4f6753019349ccff5cfad82048d15";
revision = "2";
editedCabalFile = "0dil8dqjx4l1d065rcixhbri1j40ppip6kfl22kxgyx96hz0vzfh";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base pipes transformers ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Parsing infrastructure for the pipes ecosystem";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, QuickCheck, base, criterion, exceptions, lib
, mmorph, mtl, optparse-applicative, test-framework
, test-framework-quickcheck2, transformers, void
}:
mkDerivation {
pname = "pipes";
version = "4.3.16";
sha256 = "f4e16ecf010fd681a56e6216ab1bd429f3c9bc962ec032e32cfd23e374e97498";
revision = "6";
editedCabalFile = "16s8a1ijakhsk73ny2vrw6a8r2dszgncd0wk735ii6csg3l2c9pm";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base exceptions mmorph mtl transformers void
];
testHaskellDepends = [
base mtl QuickCheck test-framework test-framework-quickcheck2
transformers
];
benchmarkHaskellDepends = [
base criterion mtl optparse-applicative transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Compositional pipelines";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
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