Plymouth cleanup and flake update

This commit is contained in:
foglar 2025-10-10 20:25:50 +02:00
parent 05e58e14c5
commit 7f9d397b20
2 changed files with 6 additions and 5 deletions

View File

@ -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;
};
};

View File

@ -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; [ ];
};
}