21 stdenv.mkDerivation rec {
22 pname = "icon-library";
26 url = "https://gitlab.gnome.org/World/design/icon-library/uploads/7725604ce39be278abe7c47288085919/icon-library-${version}.tar.xz";
27 hash = "sha256-nWGTYoSa0/fxnD0Mb2132LkeB1oa/gj/oIXBbI+FDw8=";
30 env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
31 # Set the location to gettext to ensure the nixpkgs one on Darwin instead of the vendored one.
32 # The vendored gettext does not build with clang 16.
33 GETTEXT_BIN_DIR = "${lib.getBin buildPackages.gettext}/bin";
34 GETTEXT_INCLUDE_DIR = "${lib.getDev gettext}/include";
35 GETTEXT_LIB_DIR = "${lib.getLib gettext}/lib";
53 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
54 darwin.apple_sdk.frameworks.Foundation
58 homepage = "https://gitlab.gnome.org/World/design/icon-library";
59 description = "Symbolic icons for your apps";
60 mainProgram = "icon-library";
61 maintainers = with maintainers; [ qyliss ];
62 license = licenses.gpl3Plus;
63 platforms = platforms.unix;