3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, pantheon
, meson
, python3
, ninja
, hicolor-icon-theme
, gtk3
}:
2018-08-20 21:31:18 +01:00
stdenv.mkDerivation rec {
pname = "elementary-icon-theme";
version = "5.0.4";
2018-08-20 21:31:18 +01:00
repoName = "icons";
2018-08-20 21:31:18 +01:00
src = fetchFromGitHub {
owner = "elementary";
repo = repoName;
2018-08-20 21:31:18 +01:00
rev = version;
sha256 = "0ha7biqvmkv68x1gi9bfcn5z0ld067pa5czx0pyf053pa86lg3hx";
2018-08-20 21:31:18 +01:00
};
passthru = {
updateScript = pantheon.updateScript {
inherit repoName;
attrPath = pname;
2018-08-20 21:31:18 +01:00
};
};
nativeBuildInputs = [
gtk3
2018-08-20 21:31:18 +01:00
meson
ninja
python3
];
propagatedBuildInputs = [
hicolor-icon-theme
];
2018-08-20 21:31:18 +01:00
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;
};
}