2016-08-04 17:00:12 +02:00
|
|
|
{
|
|
|
|
plasmaPackage, lib, copyPathsToStore,
|
2017-02-26 13:49:15 +01:00
|
|
|
extra-cmake-modules,
|
2016-08-04 17:00:12 +02:00
|
|
|
plymouth
|
|
|
|
}:
|
|
|
|
|
|
|
|
plasmaPackage {
|
|
|
|
name = "breeze-plymouth";
|
2017-02-26 13:49:15 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2016-08-04 17:00:12 +02:00
|
|
|
buildInputs = [ plymouth ];
|
|
|
|
outputs = [ "out" ];
|
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cmake/FindPlymouth.cmake --subst-var out
|
|
|
|
'';
|
|
|
|
}
|