Merge pull request #26158 from montag451/simpleproxy

simpleproxy: init at 3.5
This commit is contained in:
Jörg Thalheim 2017-05-27 18:54:19 +01:00 committed by GitHub
commit 801adf99c2
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "simpleproxy-${version}";
version = "3.5";
rev = "v.${version}";
src = fetchFromGitHub {
inherit rev;
owner = "vzaliva";
repo = "simpleproxy";
sha256 = "1my9g4vp19dikx3fsbii4ichid1bs9b9in46bkg05gbljhj340f6";
};
meta = with stdenv.lib; {
homepage = https://github.com/vzaliva/simpleproxy;
description = "A simple TCP proxy";
license = licenses.gpl2;
maintainers = [ maintainers.montag451 ];
};
}

View File

@ -4058,6 +4058,8 @@ with pkgs;
silver-searcher = callPackage ../tools/text/silver-searcher { };
ag = self.silver-searcher;
simpleproxy = callPackage ../tools/networking/simpleproxy { };
simplescreenrecorder = callPackage ../applications/video/simplescreenrecorder { };
sipsak = callPackage ../tools/networking/sipsak { };