pptpd: init at 1.4.0
This commit is contained in:
parent
ed46b468b0
commit
6b02ae3893
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv, fetchurl, ppp }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "pptpd";
|
||||||
|
version = "1.4.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/poptop/${pname}/${name}/${name}.tar.gz";
|
||||||
|
sha256 = "1h06gyxj51ba6kbbnf6hyivwjia0i6gsmjz8kyggaany8a58pkcg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ppp ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace plugins/Makefile --replace "install -o root" "install"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://poptop.sourceforge.net/dox/;
|
||||||
|
description = "The PPTP Server for Linux";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ obadz ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3003,6 +3003,8 @@ in
|
||||||
|
|
||||||
pptp = callPackage ../tools/networking/pptp {};
|
pptp = callPackage ../tools/networking/pptp {};
|
||||||
|
|
||||||
|
pptpd = callPackage ../tools/networking/pptpd {};
|
||||||
|
|
||||||
prey-bash-client = callPackage ../tools/security/prey { };
|
prey-bash-client = callPackage ../tools/security/prey { };
|
||||||
|
|
||||||
profile-cleaner = callPackage ../tools/misc/profile-cleaner { };
|
profile-cleaner = callPackage ../tools/misc/profile-cleaner { };
|
||||||
|
|
Loading…
Reference in New Issue