neuwaita-icon-theme: remove package

Unmaintained.
This commit is contained in:
Gabriel Arazas 2023-12-15 21:56:14 +08:00
parent fafe5e8418
commit 6e1ac8af2d
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 35 deletions

View File

@ -25,7 +25,6 @@ let
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
nautilus-annotations = callPackage ./nautilus-annotations { };
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
pop-launcher-plugin-brightness = callPackage ./pop-launcher-plugin-brightness { };
pop-launcher-plugin-duckduckgo-bangs =
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };

View File

@ -1,34 +0,0 @@
{ stdenv, lib, fetchFromGitHub, gtk3, gnome-icon-theme, hicolor-icon-theme }:
stdenv.mkDerivation rec {
pname = "neuwaita-icon-theme";
version = "unstable-2022-05-22";
src = fetchFromGitHub {
owner = "Ashwatthaamaa";
repo = "Neuwaita";
rev = "319b751aaeb268e5c70f0000b25eea050ce3a2ff";
sha256 = "sha256-eRpy1UaPtKOTzIUjWOn9z8TbtiNLv//c77rYrV4FHmI=";
};
nativeBuildInputs = [ gtk3 ];
propagatedBuildInputs = [ gnome-icon-theme hicolor-icon-theme ];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
install -Dm644 index.theme -t $out/share/icons/neuwaita
cp -a scalable/ $out/share/icons/neuwaita
gtk-update-icon-cache $out/share/icons/neuwaita
runHook postInstall
'';
meta = with lib; {
description = "A neumorphic take on Adwaita theme.";
homepage = "https://github.com/Ashwatthaamaa/Neuwaita";
#license = licenses.cc0;
platforms = platforms.linux;
};
}