mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 12:23:55 +00:00
15 lines
158 B
Nix
15 lines
158 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
taglib,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "juk";
|
|
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
taglib
|
|
];
|
|
meta.mainProgram = "juk";
|
|
}
|