Unverified Commit 9647ad3d authored by Rouven Seifert's avatar Rouven Seifert
Browse files

dracula-icon-theme: init at unstable-2021-07-21

parent 9c7c80fa
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ lib, stdenvNoCC, fetchFromGitHub, jdupes }:

stdenvNoCC.mkDerivation {
  pname = "dracula-icon-theme";
  version = "unstable-2021-07-21";

  src = fetchFromGitHub {
    owner = "m4thewz";
    repo = "dracula-icons";
    rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8";
    hash = "sha256-GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ=";
  };

  nativeBuildInputs = [
    jdupes
  ];

  dontDropIconThemeCache = true;

  dontPatchELF = true;
  dontRewriteSymlinks = true;

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/icons/Dracula
    cp -a * $out/share/icons/Dracula/
    jdupes --quiet --link-soft --recurse $out/share

    runHook postInstall
  '';

  meta = with lib; {
    description = "Dracula Icon theme";
    homepage = "https://github.com/m4thewz/dracula-icons";
    platforms = platforms.linux;
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ therealr5 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -27867,6 +27867,8 @@ with pkgs;
  dotcolon-fonts = callPackage ../data/fonts/dotcolon-fonts { };
  dracula-icon-theme = callPackage ../data/icons/dracula-icon-theme { };
  e17gtk = callPackage ../data/themes/e17gtk { };
  eb-garamond = callPackage ../data/fonts/eb-garamond { };