Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14666,6 +14666,12 @@
githubId = 610615;
name = "Chih-Mao Chen";
};
pkosel = {
name = "pkosel";
email = "[email protected]";
github = "pkosel";
githubId = 170943;
};
pks = {
email = "[email protected]";
github = "pks-t";
Expand Down
41 changes: 41 additions & 0 deletions pkgs/by-name/mo/morewaita-icon-theme/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
gtk3,
xdg-utils,
}:
stdenvNoCC.mkDerivation rec {
pname = "morewaita-icon-theme";
version = "43.2";

src = fetchFromGitHub {
owner = "somepaulo";
repo = "MoreWaita";
rev = "v${version}";
hash = "sha256-efeZEysuWdE1+ws3njFlhWjAjavRlMuIuSL2VT25lUk=";
};

nativeBuildInputs = [
gtk3
xdg-utils
];

installPhase = ''
runHook preInstall

install -d $out/share/icons/MoreWaita
cp -r . $out/share/icons/MoreWaita
gtk-update-icon-cache -f -t $out/share/icons/MoreWaita && xdg-desktop-menu forceupdate

runHook postInstall
'';

meta = with lib; {
description = "An Adwaita style extra icons theme for Gnome Shell";
homepage = "https://github.com/somepaulo/MoreWaita";
license = with licenses; [ gpl3Only ];
platforms = platforms.linux;
maintainers = with maintainers; [ pkosel ];
};
}