mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
41 lines
883 B
Nix
41 lines
883 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "minimal-grub-theme";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tomdewildt";
|
|
repo = "minimal-grub-theme";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-CegLznlW+UJZbVe+WG/S8tREFdw0aq3flGvJeDrLWK0=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/
|
|
|
|
cp -r minimal/icons minimal/theme.txt minimal/*.png $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Minimalistic GRUB theme insipired by primitivistical and vimix";
|
|
homepage = "https://github.com/tomdewildt/minimal-grub-theme";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ azuwis ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|