latte-dock: 0.9.11 -> 0.9.12
[NixPkgs.git] / pkgs / tools / networking / pptpd / default.nix
blob8a802281192e295b3d6f746d6fccad0c741e51ca
1 { lib, stdenv, fetchurl, ppp }:
3 stdenv.mkDerivation rec {
4   pname   = "pptpd";
5   version = "1.4.0";
7   src = fetchurl {
8     url    = "mirror://sourceforge/poptop/${pname}/${pname}-${version}/${pname}-${version}.tar.gz";
9     sha256 = "1h06gyxj51ba6kbbnf6hyivwjia0i6gsmjz8kyggaany8a58pkcg";
10   };
12   buildInputs = [ ppp ];
14   postPatch = ''
15     substituteInPlace plugins/Makefile --replace "install -o root" "install"
16   '';
18   meta = with lib; {
19     homepage    = "http://poptop.sourceforge.net/dox/";
20     description = "The PPTP Server for Linux";
21     platforms   = platforms.linux;
22     maintainers = with maintainers; [ obadz ];
23     license = licenses.gpl2;
24   };