2017-05-15 12:05:35 -05:00
|
|
|
{
|
|
|
|
mkDerivation, lib, copyPathsToStore,
|
|
|
|
extra-cmake-modules, kcoreaddons, polkit-qt, qttools
|
|
|
|
}:
|
2016-04-21 10:32:21 -05:00
|
|
|
|
2017-05-15 12:05:35 -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 ]; };
|
2017-02-26 06:49:15 -06:00
|
|
|
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);
|
|
|
|
}
|