From 7f9d397b203f7d252fb3358543e8f55cd6c66b60 Mon Sep 17 00:00:00 2001 From: foglar Date: Fri, 10 Oct 2025 20:25:50 +0200 Subject: [PATCH] Plymouth cleanup and flake update --- flake.nix | 1 + windows-xp-plymouth.nix | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index cca2d93..80b1a2e 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,7 @@ windows-xp-icons = pkgs.callPackage ./windows-xp-icons.nix { }; windows-xp-theme = pkgs.callPackage ./windows-xp-theme.nix { }; windows-xp-cursor = pkgs.callPackage ./windows-xp-cursor.nix { }; + windows-xp-plymouth = pkgs.callPackage ./windows-xp-plymouth.nix { }; default = self.packages.${system}.windows-xp-theme; }; }; diff --git a/windows-xp-plymouth.nix b/windows-xp-plymouth.nix index cfe4593..776afed 100644 --- a/windows-xp-plymouth.nix +++ b/windows-xp-plymouth.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation { pname = "windows-xp-plymouth"; - version = "0.0.1"; # or any identifiable date/version tag + version = "0.0.1"; src = fetchFromGitHub { owner = "FraioVeio"; repo = "plymouth-xp-theme"; - rev = "1bccaff93d867fa29e792e246bf71b80f2c24fcb"; # latest commit as of writing - hash = lib.fakeHash; + rev = "1bccaff93d867fa29e792e246bf71b80f2c24fcb"; + hash = "sha256-XavQEtvdZTu4vSEYWiREQPhsCg8Lm3gYPThYBCtnOAQ="; }; postPatch = '' @@ -37,9 +37,9 @@ stdenvNoCC.mkDerivation { recreated for modern Linux systems. ''; homepage = "https://github.com/FraioVeio/plymouth-xp-theme"; - license = lib.licenses.gpl3; # The repo says GPL-3.0 + license = lib.licenses.gpl3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; # add your name if you maintain it + maintainers = with lib.maintainers; [ ]; }; }