mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
ce77225e21
This is the thing you want to look at.
11 lines
130 B
Nix
11 lines
130 B
Nix
{
|
|
mkKdeDerivation,
|
|
cups,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "print-manager";
|
|
|
|
# FIXME: cups-smb?
|
|
extraBuildInputs = [cups];
|
|
}
|