about summary refs log tree commit diff
path: root/pkgs/applications/networking/owncloud-client/default.nix
diff options
context:
space:
mode:
authorJoachim Schiele <js@lastlog.de>2014-11-20 11:24:51 +0100
committerJoachim Schiele <js@lastlog.de>2014-11-20 12:47:47 +0100
commit44e32468111b37fecc9d25b718dc31241e281041 (patch)
tree2b854ff0f505da06315929d7216b693133efdadb /pkgs/applications/networking/owncloud-client/default.nix
parent1286572302d4bb7ee4b1630dae6849a669bfcbad (diff)
downloadnixlib-44e32468111b37fecc9d25b718dc31241e281041.tar
nixlib-44e32468111b37fecc9d25b718dc31241e281041.tar.gz
nixlib-44e32468111b37fecc9d25b718dc31241e281041.tar.bz2
nixlib-44e32468111b37fecc9d25b718dc31241e281041.tar.lz
nixlib-44e32468111b37fecc9d25b718dc31241e281041.tar.xz
nixlib-44e32468111b37fecc9d25b718dc31241e281041.tar.zst
nixlib-44e32468111b37fecc9d25b718dc31241e281041.zip
owncloudclient: initial 1.7.0 packaged added
Diffstat (limited to 'pkgs/applications/networking/owncloud-client/default.nix')
-rw-r--r--pkgs/applications/networking/owncloud-client/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/networking/owncloud-client/default.nix b/pkgs/applications/networking/owncloud-client/default.nix
new file mode 100644
index 000000000000..6e7755c7bf43
--- /dev/null
+++ b/pkgs/applications/networking/owncloud-client/default.nix
@@ -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 ];
+  };
+}