summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/networkmanager-qt.nix
blob: e9f812d68da85f2c65680c451e54dc9cc0d93c3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation, lib,
  extra-cmake-modules,
  networkmanager, qtbase,
}:

mkDerivation {
  pname = "networkmanager-qt";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ networkmanager qtbase ];
  outputs = [ "out" "dev" ];
  meta.platforms = lib.platforms.linux;
}