ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
22 lines
316 B
Nix
22 lines
316 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtmultimedia,
|
|
pkg-config,
|
|
qqc2-desktop-style,
|
|
taglib,
|
|
libvlc,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kasts";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtmultimedia
|
|
qqc2-desktop-style
|
|
taglib
|
|
libvlc
|
|
];
|
|
meta.mainProgram = "kasts";
|
|
}
|