2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, cereal, network }:
|
2012-02-02 11:37:48 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "socks";
|
2012-08-03 17:42:48 +02:00
|
|
|
version = "0.4.2";
|
|
|
|
sha256 = "1nbhx2jjij5kjqa0l68s401ach4yziq6w8mvcv589fcscw212w8r";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cereal network ];
|
2012-02-02 11:37:48 +01:00
|
|
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-02-02 11:37:48 +01:00
|
|
|
};
|
|
|
|
})
|