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