nixpkgs/pkgs/data/themes/obsidian2/default.nix

31 lines
827 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gtk-engine-murrine }:
2018-05-03 19:19:54 +01:00
stdenv.mkDerivation rec {
pname = "theme-obsidian2";
2020-10-01 18:07:12 +01:00
version = "2.15";
2018-05-03 19:19:54 +01:00
src = fetchurl {
url = "https://github.com/madmaxms/theme-obsidian-2/releases/download/v${version}/obsidian-2-theme.tar.xz";
2020-10-01 18:07:12 +01:00
sha256 = "1d6h8jsg8r1jbv2izshhpvlwsrwpi2f2dm461kr1zpwcw5glf9jx";
2018-05-03 19:19:54 +01:00
};
sourceRoot = ".";
2018-05-03 19:19:54 +01:00
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
installPhase = ''
runHook preInstall
2018-05-03 19:19:54 +01:00
mkdir -p $out/share/themes
cp -a Obsidian-2* $out/share/themes
runHook postInstall
2018-05-03 19:19:54 +01:00
'';
meta = with stdenv.lib; {
description = "Gnome theme, based upon Adwaita-Maia dark skin";
2020-04-02 22:33:59 +01:00
homepage = "https://github.com/madmaxms/theme-obsidian-2";
2020-09-04 17:40:18 +01:00
license = with licenses; [ gpl3Only ];
2018-05-03 19:19:54 +01:00
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}