owncloudclient: initial 1.7.0 packaged added
This commit is contained in:
parent
1286572302
commit
44e3246811
32
pkgs/applications/networking/owncloud-client/default.nix
Normal file
32
pkgs/applications/networking/owncloud-client/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchurl, cmake, qt4, pkgconfig, neon, qtkeychain, sqlite }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "owncloud-client" + "-" + version;
|
||||||
|
|
||||||
|
version = "1.7.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://download.owncloud.com/desktop/stable/mirall-${version}.tar.bz2";
|
||||||
|
sha256 = "b1cb0612e5022de263dc4c6309eba8207d694a40a80dae6762b4a56fa8d4d944";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ cmake qt4 pkgconfig neon qtkeychain sqlite];
|
||||||
|
|
||||||
|
#configurePhase = ''
|
||||||
|
# mkdir build
|
||||||
|
# cd build
|
||||||
|
# cmake -DBUILD_WITH_QT4=on \
|
||||||
|
# -DCMAKE_INSTALL_PREFIX=$out \
|
||||||
|
# -DCMAKE_BUILD_TYPE=Release \
|
||||||
|
# ..
|
||||||
|
#'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Synchronise your ownCloud with your computer using this desktop client";
|
||||||
|
homepage = https://owncloud.org;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ qknight ];
|
||||||
|
};
|
||||||
|
}
|
@ -1994,6 +1994,8 @@ let
|
|||||||
|
|
||||||
otpw = callPackage ../os-specific/linux/otpw { };
|
otpw = callPackage ../os-specific/linux/otpw { };
|
||||||
|
|
||||||
|
owncloudclient = callPackage ../applications/networking/owncloud-client { };
|
||||||
|
|
||||||
p7zip = callPackage ../tools/archivers/p7zip { };
|
p7zip = callPackage ../tools/archivers/p7zip { };
|
||||||
|
|
||||||
pal = callPackage ../tools/misc/pal { };
|
pal = callPackage ../tools/misc/pal { };
|
||||||
|
Loading…
Reference in New Issue
Block a user