Skip to content
Snippets Groups Projects
Commit 852a4ebd authored by Max Tomago's avatar Max Tomago Committed by Daniel Firth
Browse files

io-streams-haproxy: init at 1.0.1.0

parent f1edba93
Branches
No related merge requests found
...@@ -209,6 +209,7 @@ let otherLibraries = ...@@ -209,6 +209,7 @@ let otherLibraries =
, callIoSim "io-classes" "io-classes" , callIoSim "io-classes" "io-classes"
, callIoSim "io-sim" "io-sim" , callIoSim "io-sim" "io-sim"
, H.callHackage "io-streams" "1.5.2.2" , H.callHackage "io-streams" "1.5.2.2"
, H.callHackage "io-streams-haproxy" "1.0.1.0"
, H.callHackage "inline-c" "0.9.1.6" , H.callHackage "inline-c" "0.9.1.6"
, H.callCabal2nix , H.callCabal2nix
"inline-r" "inline-r"
......
...@@ -169,6 +169,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -169,6 +169,8 @@ final: prev: with pkgs.haskell.lib; {
io-streams = final.callPackage (./pkgs/io-streams.nix) { }; io-streams = final.callPackage (./pkgs/io-streams.nix) { };
io-streams-haproxy = final.callPackage (./pkgs/io-streams-haproxy.nix) { };
katip = final.callPackage (./pkgs/katip.nix) { }; katip = final.callPackage (./pkgs/katip.nix) { };
lazy-search = final.callPackage (./pkgs/lazy-search.nix) { }; lazy-search = final.callPackage (./pkgs/lazy-search.nix) { };
......
{ mkDerivation
, HUnit
, attoparsec
, base
, bytestring
, io-streams
, lib
, network
, test-framework
, test-framework-hunit
, transformers
}:
mkDerivation {
pname = "io-streams-haproxy";
version = "1.0.1.0";
sha256 = "b74eca9290fe838a0e3be857a38b62cf6fb7478acee400eac19e47471a2c96b5";
revision = "6";
editedCabalFile = "024aw98q1x3fb1xq07qki3z446w6lk5gyjl13shy0dbrd5aafh92";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec
base
bytestring
io-streams
network
transformers
];
testHaskellDepends = [
attoparsec
base
bytestring
HUnit
io-streams
network
test-framework
test-framework-hunit
transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://snapframework.com/";
description = "HAProxy protocol 1.5 support for io-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