lol

Merge pull request #190136 from wamserma/fix-xmind

authored by

Sandro and committed by
GitHub
a0b7e70d dbe182ff

+7 -7
+7 -7
pkgs/applications/misc/xmind/default.nix
··· 1 - { stdenv, lib, fetchzip, fetchurl, gtk2, jre, libXtst, makeWrapper, makeDesktopItem, runtimeShell }: 1 + { stdenv, lib, fetchzip, fetchurl, gtk3, jre8, libXtst, makeWrapper, makeDesktopItem, runtimeShell }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xmind"; 5 - version = "8-update8"; 5 + version = "8-update9"; 6 6 7 7 src = fetchzip { 8 - url = "https://xmind.net/xmind/downloads/${pname}-${version}-linux.zip"; 8 + url = "https://www.xmind.app/xmind/downloads/${pname}-${version}-linux.zip"; 9 9 stripRoot = false; 10 - sha256 = "1p68z0b4brgiyybz190alqv716ncql49vsksm41y90mcjd8s4jhn"; 10 + sha256 = "9769c4a9d42d3370ed2c2d1bed5a5d78f1fc3dc5bd604b064b56101fc7f90bb4"; 11 11 }; 12 12 13 13 srcIcon = fetchurl { 14 - url = "https://aur.archlinux.org/cgit/aur.git/plain/xmind.png?h=xmind"; 14 + url = "https://aur.archlinux.org/cgit/aur.git/plain/xmind.png?h=xmind&id=41936c866b244b34d7dfbee373cbb835eed7860b"; 15 15 sha256 = "0jxq2fiq69q9ly0m6hx2qfybqad22sl42ciw636071khpqgc885f"; 16 16 }; 17 17 ··· 25 25 dontPatchELF = true; 26 26 dontStrip = true; 27 27 28 - libPath = lib.makeLibraryPath [ gtk2 libXtst ]; 28 + libPath = lib.makeLibraryPath [ gtk3 libXtst ]; 29 29 30 30 desktopItem = makeDesktopItem { 31 31 name = "XMind"; ··· 67 67 EOF 68 68 chmod +x $out/bin/XMind 69 69 70 - ln -s ${jre} $out/libexec/jre 70 + ln -s ${jre8} $out/libexec/jre 71 71 ''; 72 72 73 73 meta = with lib; {