depot/third_party/nixpkgs/pkgs/tools/networking/pptpd/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
715 B
Nix

{ lib, stdenv, fetchurl, ppp }:
stdenv.mkDerivation rec {
pname = "pptpd";
version = "1.4.0";
src = fetchurl {
url = "mirror://sourceforge/poptop/${pname}/${pname}-${version}/${pname}-${version}.tar.gz";
sha256 = "1h06gyxj51ba6kbbnf6hyivwjia0i6gsmjz8kyggaany8a58pkcg";
};
patches = [
./ppp-2.5.0-compat.patch
];
buildInputs = [ ppp ];
postPatch = ''
substituteInPlace plugins/Makefile --replace "install -o root" "install"
'';
meta = with lib; {
homepage = "https://poptop.sourceforge.net/dox/";
description = "PPTP Server for Linux";
platforms = platforms.linux;
maintainers = with maintainers; [ obadz ];
license = licenses.gpl2Only;
};
}