mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
networkmanager-sstp: unstable-2020-04-20 → 1.3.0
735d8ca078
...release-1.3.0
- Maintained again, moved to GNOME servers
- GTK4 support
- clean up
This commit is contained in:
parent
ce91980056
commit
b380589e3e
@ -1,51 +1,59 @@
|
||||
{ lib, stdenv
|
||||
, autoreconfHook
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, file
|
||||
, glib
|
||||
, gnome
|
||||
, gtk3
|
||||
, gtk4
|
||||
, intltool
|
||||
, libnma
|
||||
, libnma-gtk4
|
||||
, libsecret
|
||||
, networkmanager
|
||||
, pkg-config
|
||||
, ppp
|
||||
, sstp
|
||||
, substituteAll
|
||||
, withGnome ? true }:
|
||||
, withGnome ? true
|
||||
}:
|
||||
|
||||
let
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "NetworkManager-sstp";
|
||||
version = "unstable-2020-04-20";
|
||||
in stdenv.mkDerivation {
|
||||
version = "1.3.0";
|
||||
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enaess";
|
||||
repo = "network-manager-sstp";
|
||||
rev = "735d8ca078f933e085029f60a737e3cf1d8c29a8";
|
||||
sha256 = "0aahfhy2ch951kzj6gnd8p8hv2s5yd5y10wrmj68djhnx2ml8cd3";
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "+IJw3jvOYs/+NDS9HvCrSQ6wxh1x1yqwiFij7UZb+rU=";
|
||||
};
|
||||
|
||||
buildInputs = [ sstp networkmanager glib ppp ]
|
||||
++ lib.optionals withGnome [ gtk3 libsecret libnma ];
|
||||
nativeBuildInputs = [
|
||||
file
|
||||
intltool
|
||||
pkg-config
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ file intltool autoreconfHook pkg-config ];
|
||||
buildInputs = [
|
||||
sstp
|
||||
networkmanager
|
||||
glib
|
||||
ppp
|
||||
] ++ lib.optionals withGnome [
|
||||
gtk3
|
||||
gtk4
|
||||
libsecret
|
||||
libnma
|
||||
libnma-gtk4
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
sed -i 's#/sbin/pppd#${ppp}/bin/pppd#' src/nm-sstp-service.c
|
||||
sed -i 's#/sbin/sstpc#${sstp}/bin/sstpc#' src/nm-sstp-service.c
|
||||
'';
|
||||
|
||||
# glib-2.62 deprecations
|
||||
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
|
||||
|
||||
preConfigure = "intltoolize";
|
||||
configureFlags = [
|
||||
"--without-libnm-glib"
|
||||
"--with-gnome=${if withGnome then "yes" else "no"}"
|
||||
"--with-gtk4=${if withGnome then "yes" else "no"}"
|
||||
"--enable-absolute-paths"
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user