atau-nixpkgs/nineicons-redux/default.nix

32 lines
791 B
Nix
Raw Permalink Normal View History

2024-08-01 21:27:02 +00:00
{ lib, stdenvNoCC }:
2024-08-01 00:29:50 +00:00
2024-08-01 21:27:02 +00:00
stdenvNoCC.mkDerivation rec {
2024-08-01 00:29:50 +00:00
name = "nineicons-redux";
pname = name;
version = "3cc6c532a2fcbfa2d9d15b91f7fbc0a98ddb5cf3";
src = fetchGit {
url = "https://www.opencode.net/aitees/nineicons-redux.git";
rev = version;
};
2024-08-01 21:27:02 +00:00
dontDropIconThemeCache = true;
2024-08-01 00:29:50 +00:00
installPhase = ''
runHook preInstall
# Install icons
mkdir -p "$out/share/icons/NineIcons"
mv * "$out/share/icons/NineIcons"
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.opencode.net/aitees/nineicons-redux";
description = "This is a quick and dirty theme meant to approximate (but not really be too pixel accurate) the MacOS 9 (or System 7) theme.";
platforms = platforms.unix;
maintainers = with maintainers; [ atau ];
};
}