mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
11 lines
130 B
Nix
11 lines
130 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
cups,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "print-manager";
|
||
|
|
||
|
# FIXME: cups-smb?
|
||
|
extraBuildInputs = [cups];
|
||
|
}
|