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

31 lines
825 B
Nix
Raw Normal View History

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