mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ce77225e21
This is the thing you want to look at.
13 lines
253 B
Nix
13 lines
253 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
pkg-config,
|
|
networkmanager,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "networkmanager-qt";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtdeclarative];
|
|
extraPropagatedBuildInputs = [networkmanager];
|
|
}
|