mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 20:12:52 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, 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 = "sha256-6XFzjpuHpGIZ+azkPuFcSF7p66sDonwLwjvlNBZDRmc=";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
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 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;
|
|
};
|
|
}
|