You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
381 B
18 lines
381 B
{ 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;
|
|
};
|
|
}
|
|
|