e3be875b70
Now uses librsvg's rsvg-convert instead of inkscape.
69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, pantheon
|
|
, meson
|
|
, python3
|
|
, ninja
|
|
, hicolor-icon-theme
|
|
, gtk3
|
|
, xorg
|
|
, librsvg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elementary-icon-theme";
|
|
version = "5.3.1";
|
|
|
|
repoName = "icons";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elementary";
|
|
repo = repoName;
|
|
rev = version;
|
|
sha256 = "0rs68cb39r9vq85pr8h3mgmyjpj8bkhkxr5cz4cn5947kf776wg9";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = pantheon.updateScript {
|
|
attrPath = "pantheon.${pname}";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
librsvg
|
|
meson
|
|
ninja
|
|
python3
|
|
xorg.xcursorgen
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
mesonFlags = [
|
|
"-Dvolume_icons=false" # Tries to install some icons to /
|
|
"-Dpalettes=false" # Don't install gimp and inkscape palette files
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson/symlink.py
|
|
patchShebangs meson/symlink.py
|
|
'';
|
|
|
|
postFixup = "gtk-update-icon-cache $out/share/icons/elementary";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Named, vector icons for elementary OS";
|
|
longDescription = ''
|
|
An original set of vector icons designed specifically for elementary OS and its desktop environment: Pantheon.
|
|
'';
|
|
homepage = "https://github.com/elementary/icons";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = pantheon.maintainers;
|
|
};
|
|
}
|