commit 950da471d2953b3c036a317094da01a1ab06426b parent 4c87c081bfe9e6403cf45c9220850212426e5f09 Author: Nikolay Korotkiy <sikmir@disroot.org> Date: Sun, 6 Sep 2026 01:15:52 +0400 Drop goldendict-bin Diffstat:
| D | pkgs/by-name/go/goldendict-bin/package.nix | | | 38 | -------------------------------------- |
1 file changed, 0 insertions(+), 38 deletions(-)
diff --git a/pkgs/by-name/go/goldendict-bin/package.nix b/pkgs/by-name/go/goldendict-bin/package.nix @@ -1,38 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - undmg, -}: - -stdenv.mkDerivation rec { - pname = "goldendict-bin"; - version = "1.5.0-RC2-372-gc3ff15f"; - - __structuredAttrs = true; - - src = fetchurl { - url = "https://downloads.sourceforge.net/project/goldendict/early%20access%20builds/MacOS/GoldenDict-${version}%28Qt_5121%29.dmg"; - sha256 = "1zvkwnpsybflgbgs3dvjcivrdpq4fc8njb96nsw507dmbnysq15w"; - name = "Goldendict-${version}.dmg"; - }; - - preferLocalBuild = true; - - nativeBuildInputs = [ undmg ]; - - installPhase = '' - mkdir -p $out/Applications/GoldenDict.app - cp -r . $out/Applications/GoldenDict.app - ''; - - meta = { - description = "A feature-rich dictionary lookup program"; - homepage = "http://goldendict.org/"; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - license = lib.licenses.gpl3Plus; - maintainers = [ lib.maintainers.sikmir ]; - platforms = [ "x86_64-darwin" ]; - skip.ci = true; - }; -}
