nixpkgs/pkgs/desktops/plasma-5/breeze-plymouth/default.nix
2017-02-27 11:49:46 -06:00

17 lines
381 B
Nix

{
plasmaPackage, lib, copyPathsToStore,
extra-cmake-modules,
plymouth
}:
plasmaPackage {
name = "breeze-plymouth";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ plymouth ];
outputs = [ "out" ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postPatch = ''
substituteInPlace cmake/FindPlymouth.cmake --subst-var out
'';
}