mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ce77225e21
This is the thing you want to look at.
14 lines
247 B
Nix
14 lines
247 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kauth";
|
|
|
|
# Late resolve paths so things end up in their own prefix
|
|
# FIXME(later): discuss with upstream
|
|
patches = [./fix-paths.patch];
|
|
|
|
extraNativeBuildInputs = [qttools];
|
|
}
|