nixpkgs-suyu/pkgs/desktops/plasma-5/breeze-plymouth/default.nix

17 lines
381 B
Nix
Raw Normal View History

2016-08-04 17:00:12 +02:00
{
plasmaPackage, lib, copyPathsToStore,
extra-cmake-modules,
2016-08-04 17:00:12 +02:00
plymouth
}:
plasmaPackage {
name = "breeze-plymouth";
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
'';
}