mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
10 lines
214 B
Nix
10 lines
214 B
Nix
{ mkKdeDerivation }:
|
|
mkKdeDerivation {
|
|
pname = "kpackage";
|
|
|
|
# Follow symlinks when resolving packages
|
|
# FIXME(later): upstream
|
|
patches = [ ./follow-symlinks.patch ];
|
|
meta.mainProgram = "kpackagetool6";
|
|
}
|