mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
12 lines
189 B
Nix
12 lines
189 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
packagekit-qt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "frameworkintegration";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [packagekit-qt];
|
|
}
|