1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 03:25:02 +00:00
nixpkgs/pkgs/desktops/plasma-5/breeze-plymouth/default.nix

17 lines
381 B
Nix
Raw Normal View History

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