mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-24 18:19:01 +00:00
neuwaita-icon-theme: rename from skeuowaita
This commit is contained in:
parent
70e204cbb9
commit
98aaa39eb1
@ -38,11 +38,11 @@ let
|
||||
mopidy-beets = callPackage ./mopidy-beets.nix { };
|
||||
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };
|
||||
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
|
||||
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
|
||||
pop-launcher = callPackage ./pop-launcher.nix { };
|
||||
pop-launcher-plugin-duckduckgo-bangs =
|
||||
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||
#trex = callPackage ./trex.nix { };
|
||||
skeuowaita-icon-theme = callPackage ./skeuowaita-icon-theme.nix { };
|
||||
text-engine = callPackage ./text-engine.nix { };
|
||||
tic-80 = callPackage ./tic-80 { };
|
||||
thokr = callPackage ./thokr.nix { };
|
||||
|
34
pkgs/neuwaita-icon-theme/default.nix
Normal file
34
pkgs/neuwaita-icon-theme/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
{ stdenv, lib, fetchgit, gtk3, gnome-icon-theme, hicolor-icon-theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "skeuowaita-icon-theme";
|
||||
version = "unstable-2022-05-02";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://gitlab.gnome.org/Conspiracy/skeuowaita.git";
|
||||
rev = "82e4b2e2bc5af4eb424061f4148f1dcac56a56d3";
|
||||
sha256 = "sha256-XnKnqE6qjKQQeIpZX5u298mbB7elsbkXmNYpgYefrNE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gtk3 ];
|
||||
propagatedBuildInputs = [ gnome-icon-theme hicolor-icon-theme ];
|
||||
dontDropIconThemeCache = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 index.theme -t $out/share/icons/skeuowaita
|
||||
cp -a scalable/ $out/share/icons/skeuowaita
|
||||
gtk-update-icon-cache $out/share/icons/skeuowaita
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A skeuomorphic take on Adwaita theme.";
|
||||
homepage = "https://gitlab.gnome.org/Conspiracy/skeuowaita";
|
||||
license = licenses.cc0;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user