3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/plasma-5/breeze-plymouth/default.nix

16 lines
356 B
Nix
Raw Normal View History

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