mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ stdenv, fetchurl, iodine, intltool, pkgconfig, networkmanager, libsecret
|
|
, withGnome ? true, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
pname = "NetworkManager-iodine";
|
|
major = "1.2";
|
|
version = "${major}.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${major}/${pname}-${version}.tar.xz";
|
|
sha256 = "0njdigakidji6mfmbsp8lfi8wl88z1dk8cljbva2w0xazyddbwyh";
|
|
};
|
|
|
|
buildInputs = [ iodine networkmanager libsecret ]
|
|
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome_keyring
|
|
gnome3.networkmanagerapplet ];
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
# Fixes deprecation errors with networkmanager 1.10.2
|
|
NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations";
|
|
|
|
configureFlags = [
|
|
"${if withGnome then "--with-gnome" else "--without-gnome"}"
|
|
"--disable-static"
|
|
"--localstatedir=/" # needed for the management socket under /run/NetworkManager
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace "src/nm-iodine-service.c" \
|
|
--replace "/usr/bin/iodine" "${iodine}/bin/iodine"
|
|
'';
|
|
|
|
meta = {
|
|
description = "NetworkManager's iodine plugin";
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
};
|
|
}
|