nixpkgs/pkgs/development/libraries/haskell/pipes-network/default.nix
2014-05-21 23:04:32 +02:00

18 lines
605 B
Nix

{ cabal, network, networkSimple, pipes, pipesSafe, transformers }:
cabal.mkDerivation (self: {
pname = "pipes-network";
version = "0.6.3";
sha256 = "09gihca0hinq3sqsx9753gmas6g22pg792ag6ckdw5z3607razrg";
buildDepends = [
network networkSimple pipes pipesSafe transformers
];
jailbreak = true;
meta = {
homepage = "https://github.com/k0001/pipes-network";
description = "Use network sockets together with the pipes library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})