13 lines
367 B
Nix
Raw Normal View History

{
mkDerivation, lib, copyPathsToStore,
extra-cmake-modules, kcoreaddons, polkit-qt, qttools
}:
2016-04-21 10:32:21 -05:00
mkDerivation {
2016-04-21 10:32:21 -05:00
name = "kauth";
2016-04-28 10:48:55 -05:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules qttools ];
2016-04-28 10:48:55 -05:00
propagatedBuildInputs = [ kcoreaddons polkit-qt ];
2016-04-21 10:32:21 -05:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}