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

16 lines
356 B
Nix
Raw Normal View History

2016-08-04 15:00:12 +00:00
{
mkDerivation, lib, copyPathsToStore,
extra-cmake-modules,
2016-08-04 15:00:12 +00:00
plymouth
}:
mkDerivation {
2016-08-04 15:00:12 +00:00
name = "breeze-plymouth";
nativeBuildInputs = [ extra-cmake-modules ];
2016-08-04 15:00:12 +00:00
buildInputs = [ plymouth ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postPatch = ''
substituteInPlace cmake/FindPlymouth.cmake --subst-var out
'';
}