mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 20:13:21 +00:00
14 lines
145 B
Nix
14 lines
145 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
qtsvg,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "ksvg";
|
|
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
qtsvg
|
|
];
|
|
}
|