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
This commit is contained in:
commit
55b431f2b8
|
@ -1,16 +1,18 @@
|
||||||
{ stdenv, fetchurl, writeScript, pkgconfig, cmake, qtbase, qttools
|
{ stdenv, fetchFromGitHub, writeScript, pkgconfig, cmake, qtbase, qttools
|
||||||
, seafile-shared, ccnet, makeWrapper
|
, seafile-shared, ccnet, makeWrapper
|
||||||
, withShibboleth ? true, qtwebengine }:
|
, withShibboleth ? true, qtwebengine }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "6.1.0";
|
version = "6.1.5";
|
||||||
name = "seafile-client-${version}";
|
name = "seafile-client-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz";
|
owner = "haiwen";
|
||||||
sha256 = "16rn6b9ayaccgwx8hs3yh1wb395pp8ffh8may8a8bpcc4gdry7bd";
|
repo = "seafile-client";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ahz55cw2p3s78x5f77drz4h2jhknfzpkk83qd0ggma31q1pnpl9";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
||||||
|
|
Loading…
Reference in New Issue