mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #67270 from greizgh/qt/seafile-client
seafile-client: Use qt5's mkDerivation
This commit is contained in:
commit
3fffe5a1ae
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools
|
||||||
, seafile-shared, ccnet, makeWrapper
|
, seafile-shared, ccnet
|
||||||
, withShibboleth ? true, qtwebengine }:
|
, withShibboleth ? true, qtwebengine }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
mkDerivation rec {
|
||||||
version = "6.2.11";
|
version = "6.2.11";
|
||||||
name = "seafile-client-${version}";
|
name = "seafile-client-${version}";
|
||||||
|
|
||||||
@ -15,17 +15,16 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1b8jqmr2qd3bpb3sr4p5w2a76x5zlknkj922sxrvw1rdwqhkb2pj";
|
sha256 = "1b8jqmr2qd3bpb3sr4p5w2a76x5zlknkj922sxrvw1rdwqhkb2pj";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake makeWrapper ];
|
nativeBuildInputs = [ pkgconfig cmake ];
|
||||||
buildInputs = [ qtbase qttools seafile-shared ]
|
buildInputs = [ qtbase qttools seafile-shared ]
|
||||||
++ optional withShibboleth qtwebengine;
|
++ optional withShibboleth qtwebengine;
|
||||||
|
|
||||||
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ]
|
||||||
++ optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
++ optional withShibboleth "-DBUILD_SHIBBOLETH_SUPPORT=ON";
|
||||||
|
|
||||||
postInstall = ''
|
qtWrapperArgs = [
|
||||||
wrapProgram $out/bin/seafile-applet \
|
"--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}"
|
||||||
--suffix PATH : ${stdenv.lib.makeBinPath [ ccnet seafile-shared ]}
|
];
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/haiwen/seafile-client;
|
homepage = https://github.com/haiwen/seafile-client;
|
||||||
|
Loading…
Reference in New Issue
Block a user