3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
479 B
Nix
15 lines
479 B
Nix
{ cabal, cereal, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "socks";
|
|
version = "0.5.1";
|
|
sha256 = "08zwbkglkahjadqn2m7l0k5yp4lcd9h6kgb8k8mjlwxayx82a0ay";
|
|
buildDepends = [ cereal network ];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-socks";
|
|
description = "Socks proxy (version 5) implementation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|