1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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:
Robert Schütz 2018-02-28 11:23:05 +01:00 committed by GitHub
commit 55b431f2b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,18 @@
{ stdenv, fetchurl, writeScript, pkgconfig, cmake, qtbase, qttools
{ stdenv, fetchFromGitHub, writeScript, pkgconfig, cmake, qtbase, qttools
, seafile-shared, ccnet, makeWrapper
, withShibboleth ? true, qtwebengine }:
with stdenv.lib;
stdenv.mkDerivation rec {
version = "6.1.0";
version = "6.1.5";
name = "seafile-client-${version}";
src = fetchurl {
url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz";
sha256 = "16rn6b9ayaccgwx8hs3yh1wb395pp8ffh8may8a8bpcc4gdry7bd";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seafile-client";
rev = "v${version}";
sha256 = "1ahz55cw2p3s78x5f77drz4h2jhknfzpkk83qd0ggma31q1pnpl9";
};
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];