mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
17 lines
207 B
Nix
17 lines
207 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtmultimedia,
|
|
qtwebengine,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "parley";
|
|
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtmultimedia
|
|
qtwebengine
|
|
];
|
|
meta.mainProgram = "parley";
|
|
}
|