3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/pantheon/artwork/elementary-icon-theme/default.nix
worldofpeace 0b59f4212c pantheon: stylize expressions
The same way we want them in GNOME in nixpkgs.
Didn't touch the greeter expression because I have
a branch where it's already rewritten.
2019-08-06 11:20:01 -04:00

65 lines
1.3 KiB
Nix

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