nixpkgs/pkgs/kde/frameworks/knewstuff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
401 B
Nix
Raw Permalink Normal View History

{
mkKdeDerivation,
qtdeclarative,
qttools,
kcmutils,
}:
mkKdeDerivation {
pname = "knewstuff";
# Late resolve knsrcdir so other things install to their own prefix
# FIXME(later): upstream
2024-09-19 23:54:48 -06:00
patches = [ ./delay-resolving-knsrcdir.patch ];
2024-09-19 23:54:48 -06:00
extraBuildInputs = [
qtdeclarative
qttools
];
extraPropagatedBuildInputs = [ kcmutils ];
meta.mainProgram = "knewstuff-dialog6";
}