Merge pull request #36015 from ryantm/auto-update/seafile-client-6.1.0-to-6.1.5

seafile-client: 6.1.0 -> 6.1.5

authored by Robert Schütz and committed by GitHub 55b431f2 50a51b7e

+7 -5
+7 -5
pkgs/applications/networking/seafile-client/default.nix
··· 1 - { stdenv, fetchurl, writeScript, pkgconfig, cmake, qtbase, qttools 2 , seafile-shared, ccnet, makeWrapper 3 , withShibboleth ? true, qtwebengine }: 4 5 with stdenv.lib; 6 7 stdenv.mkDerivation rec { 8 - version = "6.1.0"; 9 name = "seafile-client-${version}"; 10 11 - src = fetchurl { 12 - url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz"; 13 - sha256 = "16rn6b9ayaccgwx8hs3yh1wb395pp8ffh8may8a8bpcc4gdry7bd"; 14 }; 15 16 nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
··· 1 + { stdenv, fetchFromGitHub, writeScript, pkgconfig, cmake, qtbase, qttools 2 , seafile-shared, ccnet, makeWrapper 3 , withShibboleth ? true, qtwebengine }: 4 5 with stdenv.lib; 6 7 stdenv.mkDerivation rec { 8 + version = "6.1.5"; 9 name = "seafile-client-${version}"; 10 11 + src = fetchFromGitHub { 12 + owner = "haiwen"; 13 + repo = "seafile-client"; 14 + rev = "v${version}"; 15 + sha256 = "1ahz55cw2p3s78x5f77drz4h2jhknfzpkk83qd0ggma31q1pnpl9"; 16 }; 17 18 nativeBuildInputs = [ pkgconfig cmake makeWrapper ];