nextcloud-client 2.3.2 (#28645)
* nextcloud-client: init at 2.3.2 * nextcloud-client: nitpicks
This commit is contained in:
parent
35a9538d16
commit
03b08fca66
@ -97,6 +97,7 @@
|
|||||||
canndrew = "Andrew Cann <shum@canndrew.org>";
|
canndrew = "Andrew Cann <shum@canndrew.org>";
|
||||||
carlsverre = "Carl Sverre <accounts@carlsverre.com>";
|
carlsverre = "Carl Sverre <accounts@carlsverre.com>";
|
||||||
casey = "Casey Rodarmor <casey@rodarmor.net>";
|
casey = "Casey Rodarmor <casey@rodarmor.net>";
|
||||||
|
caugner = "Claas Augner <nixos@caugner.de>";
|
||||||
cdepillabout = "Dennis Gosnell <cdep.illabout@gmail.com>";
|
cdepillabout = "Dennis Gosnell <cdep.illabout@gmail.com>";
|
||||||
cfouche = "Chaddaï Fouché <chaddai.fouche@gmail.com>";
|
cfouche = "Chaddaï Fouché <chaddai.fouche@gmail.com>";
|
||||||
changlinli = "Changlin Li <mail@changlinli.com>";
|
changlinli = "Changlin Li <mail@changlinli.com>";
|
||||||
|
28
pkgs/applications/networking/nextcloud-client/default.nix
Normal file
28
pkgs/applications/networking/nextcloud-client/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchgit, cmake, pkgconfig, qtbase, qtwebkit, qtkeychain, sqlite }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "nextcloud-client-${version}";
|
||||||
|
version = "2.3.2";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://github.com/nextcloud/client_theming.git";
|
||||||
|
rev = "1ee750d1aeaaefc899629e85c311594603e9ac1b";
|
||||||
|
sha256 = "0dxyng8a7cg78z8yngiqypsb44lf5c6vkabvkfch0cl0cqmarc1a";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig cmake ];
|
||||||
|
buildInputs = [ qtbase qtwebkit qtkeychain sqlite ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cmakeFlagsArray+=("-UCMAKE_INSTALL_LIBDIR" "-DOEM_THEME_DIR=$(realpath ./nextcloudtheme)" "../client")
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Nextcloud themed desktop client";
|
||||||
|
homepage = https://nextcloud.com;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ caugner ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -3416,6 +3416,8 @@ with pkgs;
|
|||||||
|
|
||||||
nextcloud = callPackage ../servers/nextcloud { };
|
nextcloud = callPackage ../servers/nextcloud { };
|
||||||
|
|
||||||
|
nextcloud-client = libsForQt56.callPackage ../applications/networking/nextcloud-client { };
|
||||||
|
|
||||||
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
|
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
|
||||||
|
|
||||||
ngrep = callPackage ../tools/networking/ngrep { };
|
ngrep = callPackage ../tools/networking/ngrep { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user