summary refs log tree commit diff
path: root/pkgs/data/icons/maia-icon-theme/default.nix
blob: ee539981fbca3ac090ec047a905f807c0f094c7f (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchFromGitLab, cmake, extra-cmake-modules, gtk3, kdeFrameworks, hicolor-icon-theme }:

stdenv.mkDerivation {
  pname = "maia-icon-theme";
  version = "2018-02-24";

  src = fetchFromGitLab {
    domain = "gitlab.manjaro.org";
    group = "artwork";
    owner = "themes";
    repo = "maia";
    rev = "b61312cc80cb9d12b0d8a55b3e61668eb6b77d2d";
    sha256 = "1g98snlh96z4sqw9sfd7fxgamh45pcj3lh1kcmng7mirvrcn2pam";
  };

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    gtk3
    kdeFrameworks.plasma-framework
    kdeFrameworks.kwindowsystem
  ];

  propagatedBuildInputs = [
    hicolor-icon-theme
  ];

  dontDropIconThemeCache = true;

  postInstall = ''
    for theme in $out/share/icons/*; do
      gtk-update-icon-cache $theme
    done
  '';

  meta = with stdenv.lib; {
    description = "Icons based on Breeze and Super Flat Remix";
    homepage = "https://gitlab.manjaro.org/artwork/themes/maia";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ mounium ];
    platforms = platforms.all;
  };
}