chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pl / plymouth-proxzima-theme / package.nix
blob175a287435e93feaea8a9d586f91652b6b6daf0c
2   stdenvNoCC,
3   fetchFromGitHub,
4   lib,
5   unstableGitUpdater,
6 }:
8 stdenvNoCC.mkDerivation {
9   pname = "plymouth-proxzima-theme";
10   version = "0-unstable-2023-01-30";
12   src = fetchFromGitHub {
13     owner = "PROxZIMA";
14     repo = "proxzima-plymouth";
15     rev = "b6e335a631e057942700de5c523198a5b8061d9c";
16     hash = "sha256-f4CtXKsZPc/gZMVD+MJrHMrMw7TTFUndhUT4YLpfORU=";
17   };
19   dontBuild = true;
21   installPhase = ''
22     runHook preInstall
23     mkdir -p $out/share/plymouth/themes/proxzima
24     cp proxzima/* $out/share/plymouth/themes/proxzima
25     substituteInPlace $out/share/plymouth/themes/proxzima/proxzima.plymouth \
26       --replace-fail "/usr/" "$out/"
27     runHook postInstall
28   '';
30   passthru.updateScript = unstableGitUpdater { };
32   meta = {
33     description = "Techno Plymouth theme with crazy animation";
34     homepage = "https://github.com/PROxZIMA/proxzima-plymouth";
35     license = lib.licenses.gpl3Only;
36     platforms = lib.platforms.linux;
37     maintainers = with lib.maintainers; [ johnrtitor ];
38   };