about summary refs log tree commit diff
path: root/pkgs/data/themes/jade1/default.nix
blob: cba38cb297a80819e5cdfc7ecf0e4b05ec231587 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, gtk-engine-murrine }:

stdenv.mkDerivation rec {
  pname = "theme-jade1";
  version = "1.6";

  src = fetchFromGitHub {
    owner = "madmaxms";
    repo = "theme-jade-1";
    rev = "v${version}";
    sha256 = "1lnajrsikw6dljf6dvgmj8aqwywmgdp34h3xsc0xiyq07arhp606";
  };

  propagatedUserEnvPkgs = [ gtk-engine-murrine ];

  installPhase = ''
    mkdir -p $out/share/themes
    cp -a Jade* $out/share/themes
  '';

  meta = with stdenv.lib; {
    description = "Fork of the original Linux Mint theme with dark menus, more intensive green and some other modifications";
    homepage = "https://github.com/madmaxms/theme-jade-1";
    license = with licenses; [ gpl3 ];
    platforms = platforms.linux;
    maintainers = [ maintainers.romildo ];
  };
}