x2goserver: add missing FileWhich dep (errors with new client)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

+4 -4
+4 -4
pkgs/applications/networking/remote/x2goserver/default.nix
··· 8 8 version = "4.1.0.3"; 9 9 10 10 src = fetchurl { 11 - url = "http://code.x2go.org/releases/source/x2goserver/${pname}-${version}.tar.gz"; 12 - sha256 = "1l6wd708kbipib4ldprfiihqmj4895nifg0bkws4x97majislxk7"; 11 + url = "https://code.x2go.org/releases/source/${pname}/${pname}-${version}.tar.gz"; 12 + sha256 = "Z3aqo1T1pE40nws8F21JiMiKYYwu30bJijeuicBp3NA="; 13 13 }; 14 14 15 15 x2go-perl = perlPackages.buildPerlPackage rec { ··· 26 26 }; 27 27 28 28 perlEnv = perl.withPackages (p: with p; [ 29 - x2go-perl DBI DBDSQLite FileBaseDir TryTiny CaptureTiny ConfigSimple Switch 29 + x2go-perl DBI DBDSQLite FileBaseDir TryTiny CaptureTiny ConfigSimple Switch FileWhich 30 30 ]); 31 31 32 32 binaryDeps = [ ··· 88 88 homepage = "http://x2go.org/"; 89 89 platforms = lib.platforms.linux; 90 90 license = licenses.gpl2; 91 - maintainers = [ maintainers.averelld ]; 91 + maintainers = with maintainers; [ averelld mkg20001 ]; 92 92 }; 93 93 }