mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
ce77225e21
This is the thing you want to look at.
12 lines
174 B
Nix
12 lines
174 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtsensors,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-mobile";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtsensors];
|
|
}
|