summary refs log tree commit diff
path: root/pkgs/data/themes/gnome-breeze/default.nix
blob: 38733590a34e7e9e1773169c4c45c49fce6b6438 (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
29
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "gnome-breeze";
  version = "unstable-2016-05-26";

  src = fetchFromGitHub {
    owner = "dirruk1";
    repo = "gnome-breeze";
    rev = "49a5cd67a270e13a4c04a4b904f126ef728e9221";
    sha256 = "sha256-lQYVOhFBDOYT+glUHleuymGTfHEE5bIyqUFnS/EDc0I=";
  };

  installPhase = ''
    mkdir -p $out/share/themes
    cp -r Breeze* $out/share/themes
  '';

  preferLocalBuild = true;

  meta = with lib; {
    description = "A GTK theme built to match KDE's breeze theme";
    homepage = "https://github.com/dirruk1/gnome-breeze";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ bennofs ];
    platforms = platforms.all;
    hydraPlatforms = [];
  };
}