gruvbox-dark-gtk: init at 1.0.1
This commit is contained in:
parent
c89516f78d
commit
b05cb5f949
27
pkgs/data/themes/gruvbox-dark-gtk/default.nix
Normal file
27
pkgs/data/themes/gruvbox-dark-gtk/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gruvbox-dark-gtk";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jmattheis";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1wf4ybnjdp2kbbvz7pmqdnzk94axaqx5ws18f34hrg4y267n0w4g";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/themes/gruvbox-dark
|
||||
rm -rf README.md LICENSE .github
|
||||
cp -r * $out/share/themes/gruvbox-dark
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Gruvbox theme for GTK based desktop environments";
|
||||
homepage = "https://github.com/jmattheis/gruvbox-dark-gtk";
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.nomisiv ];
|
||||
};
|
||||
}
|
@ -20340,6 +20340,8 @@ in
|
||||
|
||||
greybird = callPackage ../data/themes/greybird { };
|
||||
|
||||
gruvbox-dark-gtk = callPackage ../data/themes/gruvbox-dark-gtk { };
|
||||
|
||||
gubbi-font = callPackage ../data/fonts/gubbi { };
|
||||
|
||||
gyre-fonts = callPackage ../data/fonts/gyre {};
|
||||
|
Loading…
Reference in New Issue
Block a user