summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/breeze-plymouth/default.nix
blob: 898d9cd78a58dc16fe49336bed39b75b5522ffcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  mkDerivation, lib, copyPathsToStore,
  extra-cmake-modules,
  plymouth
}:

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