From 790a585f8128b299f8dc63d90e57cebf79d6b087 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Thu, 30 May 2024 21:30:27 +0530 Subject: [PATCH] plymouth-vortex-ubuntu-theme: init at 0-unstable-2024-05-05 --- .../plymouth-vortex-ubuntu-theme/package.nix | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix diff --git a/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix b/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix new file mode 100644 index 000000000000..d6223df07cda --- /dev/null +++ b/pkgs/by-name/pl/plymouth-vortex-ubuntu-theme/package.nix @@ -0,0 +1,43 @@ +{ + stdenvNoCC, + fetchFromGitHub, + lib, + unstableGitUpdater, +}: + +stdenvNoCC.mkDerivation { + pname = "plymouth-vortex-ubuntu-theme"; + version = "0-unstable-2024-05-05"; + + src = fetchFromGitHub { + owner = "emanuele-scarsella"; + repo = "vortex-ubuntu-plymouth-theme"; + rev = "331a201918a3b026dd200659403c1cf779c718f0"; + hash = "sha256-RSWfuKCdsuFA2e5kb0OXnxW+QV7b2iHVvZEKVHoLgMw="; + }; + + dontBuild = true; + + installPhase = '' + runHook preInstall + mkdir -p $out/share/plymouth/themes/vortex-ubuntu + cp vortex-ubuntu/* $out/share/plymouth/themes/vortex-ubuntu + substituteInPlace $out/share/plymouth/themes/vortex-ubuntu/vortex-ubuntu.plymouth \ + --replace-fail "/usr/" "$out/" + runHook postInstall + ''; + + passthru.updateScript = unstableGitUpdater { }; + + meta = { + description = "Animated Plymouth boot theme with rotating Ubuntu logo"; + longDescription = '' + Animated Plymouth theme with the Ubuntu logo and a futuristic and elegant look. + Disk encryption password prompt is supported. + ''; + homepage = "https://github.com/emanuele-scarsella/vortex-ubuntu-plymouth-theme"; + license = lib.licenses.gpl2Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ johnrtitor ]; + }; +}