_3proxy: 0.8.13 -> 0.9.3

This commit is contained in:
freezeboy 2020-12-28 22:32:20 +01:00
parent 724887c85e
commit 02e8041e72

View File

@ -2,25 +2,26 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "3proxy"; pname = "3proxy";
version = "0.8.13"; version = "0.9.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "z3APA3A"; owner = "z3APA3A";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1k5rqldiyakhwhplazlhswkgy3psdkpxhn85605ncwaqx49qy8vk"; sha256 = "9aopwyz0U2bYTvx5YWLJo9EE8Xfb51IOguHRJodjpm8=";
}; };
makeFlags = [ makeFlags = [
"-f Makefile.Linux"
"INSTALL=${coreutils}/bin/install" "INSTALL=${coreutils}/bin/install"
"prefix=$(out)" "DESTDIR=${placeholder "out"}"
]; ];
preConfigure = ''
ln -s Makefile.Linux Makefile
'';
meta = with lib; { meta = with lib; {
description = "Tiny free proxy server"; description = "Tiny free proxy server";
homepage = "https://github.com/z3APA3A/3proxy"; homepage = "https://github.com/z3APA3A/3proxy";
license = licenses.gpl2; license = licenses.bsd2;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.misuzu ]; maintainers = with maintainers; [ misuzu ];
}; };
} }