nix-config/pkgs/plymouth-spinner-monochrome/default.nix
Greg Burd f3fd89af54
A fork of Misterio77 and his standard template.
Many thangs to the hard work and generous availability of:
git@github.com:Misterio77/nix-config.git
2023-09-15 10:53:38 -04:00

19 lines
381 B
Nix

{ stdenv, logo ? null, lib, ... }: stdenv.mkDerivation {
pname = "plymouth-spinner-monochrome";
version = "1.0";
src = ./src;
buildPhase = lib.optionalString (logo != null) ''
cp $src . -r
ln -s ${logo} ./share/plymouth/themes/spinner-monochrome/watermark.png
'';
installPhase = ''
cp -r . $out
'';
meta = {
platforms = lib.platforms.all;
};
}