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

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

14 lines
251 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qttools,
}:
mkKdeDerivation {
pname = "kauth";
# Late resolve paths so things end up in their own prefix
# FIXME(later): discuss with upstream
2024-09-20 06:54:48 +01:00
patches = [ ./fix-paths.patch ];
2024-09-20 06:54:48 +01:00
extraNativeBuildInputs = [ qttools ];
}