Commit 70f70049 authored by Guy Chronister's avatar Guy Chronister
Browse files

zafiro-icons: migrate to by-name and switch to libsForQt5

parent ca22674f
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
  stdenvNoCC,
  fetchFromGitHub,
  gtk3,
  breeze-icons,
  libsForQt5,
  gnome-icon-theme,
  numix-icon-theme,
  numix-icon-theme-circle,
@@ -12,15 +12,15 @@
  gitUpdater,
}:

stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "zafiro-icons";
  version = "1.3";

  src = fetchFromGitHub {
    owner = "zayronxio";
    repo = pname;
    rev = version;
    sha256 = "sha256-IbFnlUOSADYMNMfvRuRPndxcQbnV12BqMDb9bJRjnoU=";
    repo = "zafiro-icons";
    tag = finalAttrs.version;
    hash = "sha256-IbFnlUOSADYMNMfvRuRPndxcQbnV12BqMDb9bJRjnoU=";
  };

  nativeBuildInputs = [
@@ -29,7 +29,7 @@ stdenvNoCC.mkDerivation rec {
  ];

  propagatedBuildInputs = [
    breeze-icons
    libsForQt5.breeze-icons
    gnome-icon-theme
    numix-icon-theme
    numix-icon-theme-circle
@@ -67,11 +67,11 @@ stdenvNoCC.mkDerivation rec {

  passthru.updateScript = gitUpdater { };

  meta = with lib; {
  meta = {
    description = "Icon pack flat with light colors";
    homepage = "https://github.com/zayronxio/Zafiro-icons";
    license = with licenses; [ gpl3 ];
    platforms = platforms.linux;
    maintainers = with maintainers; [ romildo ];
    license = lib.licenses.gpl3;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ romildo ];
  };
}
})
+0 −4
Original line number Diff line number Diff line
@@ -11637,10 +11637,6 @@ with pkgs;

  xlsx2csv = with python3Packages; toPythonApplication xlsx2csv;

  zafiro-icons = callPackage ../data/icons/zafiro-icons {
    inherit (plasma5Packages) breeze-icons;
  };

  zeal-qt5 = libsForQt5.callPackage ../data/documentation/zeal { };
  zeal = zeal-qt5;
  zeal-qt6 = qt6Packages.callPackage ../data/documentation/zeal {