3proxy: init at 0.8.13
This commit is contained in:
parent
b619c06968
commit
b571728081
26
pkgs/applications/networking/3proxy/default.nix
Normal file
26
pkgs/applications/networking/3proxy/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, coreutils }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "3proxy";
|
||||||
|
version = "0.8.13";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "z3APA3A";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1k5rqldiyakhwhplazlhswkgy3psdkpxhn85605ncwaqx49qy8vk";
|
||||||
|
};
|
||||||
|
makeFlags = [
|
||||||
|
"INSTALL=${coreutils}/bin/install"
|
||||||
|
"prefix=$(out)"
|
||||||
|
];
|
||||||
|
preConfigure = ''
|
||||||
|
ln -s Makefile.Linux Makefile
|
||||||
|
'';
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Tiny free proxy server";
|
||||||
|
homepage = "https://github.com/z3APA3A/3proxy";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.misuzu ];
|
||||||
|
};
|
||||||
|
}
|
@ -25475,6 +25475,8 @@ in
|
|||||||
|
|
||||||
kodelife = callPackage ../applications/graphics/kodelife {};
|
kodelife = callPackage ../applications/graphics/kodelife {};
|
||||||
|
|
||||||
|
_3proxy = callPackage ../applications/networking/3proxy {};
|
||||||
|
|
||||||
pigeon = callPackage ../development/tools/pigeon {};
|
pigeon = callPackage ../development/tools/pigeon {};
|
||||||
|
|
||||||
verifpal = callPackage ../tools/security/verifpal {};
|
verifpal = callPackage ../tools/security/verifpal {};
|
||||||
|
Loading…
Reference in New Issue
Block a user