mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
skeuowaita-icon-theme: init at unstable-2022-05-02
This commit is contained in:
parent
9cedbd2298
commit
b4b2850dcf
@ -38,6 +38,7 @@ let
|
|||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||||
#trex = callPackage ./trex.nix { };
|
#trex = callPackage ./trex.nix { };
|
||||||
|
skeuowaita-icon-theme = callPackage ./skeuowaita-icon-theme.nix { };
|
||||||
text-engine = callPackage ./text-engine.nix { };
|
text-engine = callPackage ./text-engine.nix { };
|
||||||
tic-80 = callPackage ./tic-80 { };
|
tic-80 = callPackage ./tic-80 { };
|
||||||
segno = libsForQt5.callPackage ./segno.nix { };
|
segno = libsForQt5.callPackage ./segno.nix { };
|
||||||
|
33
pkgs/skeuowaita-icon-theme.nix
Normal file
33
pkgs/skeuowaita-icon-theme.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ 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