mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
|
{ stdenv, fetchFromGitHub, pantheon, meson, python3,ninja, hicolor-icon-theme, gtk3 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "icons";
|
||
|
version = "5.0.2";
|
||
|
|
||
|
name = "elementary-icon-theme-${version}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "elementary";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "12j582f0kggv2lp935r75xg7q26zpl0f05s11xcs4qxazhj1ly2r";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = pantheon.updateScript {
|
||
|
repoName = pname;
|
||
|
attrPath = "elementary-icon-theme";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
python3
|
||
|
];
|
||
|
|
||
|
buildInputs = [ gtk3 ];
|
||
|
|
||
|
propagatedBuildInputs = [ hicolor-icon-theme ];
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|