about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/icons/pop-icon-theme/default.nix
blob: 2a27122da5db79cf0295692cc6fa07fb79bf50b0 (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
{ lib
, stdenvNoCC
, fetchFromGitHub
, meson
, ninja
, gtk3
, adwaita-icon-theme
, hicolor-icon-theme
}:

stdenvNoCC.mkDerivation rec {
  pname = "pop-icon-theme";
  version = "3.3.0";

  src = fetchFromGitHub {
    owner = "pop-os";
    repo = "icon-theme";
    rev = "v${version}";
    sha256 = "sha256-7cDXEkqtPNQsyZvuYZhBSgAYshkDlP8o8umWGbNLtjw=";
  };

  nativeBuildInputs = [
    meson
    ninja
    gtk3
  ];

  propagatedBuildInputs = [
    adwaita-icon-theme
    hicolor-icon-theme
  ];

  dontDropIconThemeCache = true;

  meta = with lib; {
    description = "Icon theme for Pop!_OS with a semi-flat design and raised 3D motifs";
    homepage = "https://github.com/pop-os/icon-theme";
    license = with licenses; [ cc-by-sa-40 gpl3 ];
    platforms = platforms.linux; # hash mismatch on darwin due to file names differing only in case
    maintainers = with maintainers; [ romildo ];
  };
}