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.
12 lines
199 B
Nix
12 lines
199 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
libcanberra,
|
|
pulseaudio,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "plasma-pa";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [libcanberra pulseaudio];
|
|
}
|