theme-obsidian2: init at 2.5
This commit is contained in:
parent
542ef2b182
commit
bfb3232a13
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, gtk-engine-murrine }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "theme-obsidian2-${version}";
|
||||
version = "2.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "madmaxms";
|
||||
repo = "theme-obsidian-2";
|
||||
rev = "v${version}";
|
||||
sha256 = "12jya1gzmhpfh602vbf51vi69fmis7sanvx278h3skm03a7civlv";
|
||||
};
|
||||
|
||||
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/themes
|
||||
cp -a Obsidian-2 $out/share/themes
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Gnome theme, based upon Adwaita-Maia dark skin";
|
||||
homepage = https://github.com/madmaxms/theme-obsidian-2;
|
||||
license = with licenses; [ gpl3 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
|
@ -19715,6 +19715,8 @@ with pkgs;
|
|||
|
||||
numix-sx-gtk-theme = callPackage ../misc/themes/numix-sx { };
|
||||
|
||||
theme-obsidian2 = callPackage ../misc/themes/obsidian2 { };
|
||||
|
||||
onestepback = callPackage ../misc/themes/onestepback { };
|
||||
|
||||
theme-vertex = callPackage ../misc/themes/vertex { };
|
||||
|
|
Loading…
Reference in New Issue