mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
14 lines
166 B
Nix
14 lines
166 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qcoro,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kontrast";
|
|
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qcoro
|
|
];
|
|
meta.mainProgram = "kontrast";
|
|
}
|