2012-08-02 21:44:50 +02:00
|
|
|
{ stdenv, fetchurl, networkmanager, pptp, ppp, intltool, pkgconfig, substituteAll
|
2012-03-11 15:07:37 +01:00
|
|
|
, withGnome ? false, gtk, libgnome_keyring }:
|
2011-09-14 17:50:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-03-11 15:07:37 +01:00
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
|
|
pname = "NetworkManager-pptp";
|
2013-07-10 16:18:18 +02:00
|
|
|
version = networkmanager.version;
|
2011-09-14 17:50:14 +02:00
|
|
|
|
2012-03-11 15:07:37 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/0.9/${pname}-${version}.tar.xz";
|
2013-09-29 17:00:41 +02:00
|
|
|
sha256 = "7f46ea61376d13d03685eca3f26a26e0022f6e92e6f1fc356034ca9717eb6daa";
|
2012-03-11 15:07:37 +01:00
|
|
|
};
|
2011-09-14 17:50:14 +02:00
|
|
|
|
2012-03-11 15:07:37 +01:00
|
|
|
buildInputs = [ networkmanager pptp ppp ]
|
|
|
|
++ stdenv.lib.optionals withGnome [ gtk libgnome_keyring ];
|
2011-09-14 17:50:14 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
2011-09-14 17:50:14 +02:00
|
|
|
|
2012-03-11 15:07:37 +01:00
|
|
|
configureFlags =
|
|
|
|
if withGnome then "--with-gnome --with-gtkver=2" else "--without-gnome";
|
|
|
|
|
2013-06-04 16:34:59 +02:00
|
|
|
postConfigure = "sed 's/-Werror//g' -i Makefile */Makefile";
|
|
|
|
|
2012-08-02 21:44:50 +02:00
|
|
|
patches =
|
|
|
|
[ ( substituteAll {
|
|
|
|
src = ./pptp-purity.patch;
|
|
|
|
inherit ppp pptp;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2012-03-11 15:07:37 +01:00
|
|
|
meta = {
|
|
|
|
description = "PPtP plugin for NetworkManager";
|
2012-03-11 16:20:12 +01:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
2012-03-11 15:07:37 +01:00
|
|
|
};
|
2011-09-14 17:50:14 +02:00
|
|
|
}
|