7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
9 lines
214 B
Nix
9 lines
214 B
Nix
{ mkKdeDerivation }:
|
|
mkKdeDerivation {
|
|
pname = "kpackage";
|
|
|
|
# Follow symlinks when resolving packages
|
|
# FIXME(later): upstream
|
|
patches = [ ./follow-symlinks.patch ];
|
|
meta.mainProgram = "kpackagetool6";
|
|
}
|