summary refs log tree commit diff
path: root/pkgs/development/libraries/libcommuni
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-08-29 15:37:38 +0200
committerAlexander Ried <ried@mytum.de>2016-08-29 15:37:41 +0200
commit07ed06f8da8a12f3ad0fcb65b558a828cebca270 (patch)
treeae5c2a071c8e5eb757ea1b97f04331c263022955 /pkgs/development/libraries/libcommuni
parentf16d3800e1be71c662b865276cbdeb66076442bf (diff)
downloadnixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar.gz
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar.bz2
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar.lz
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar.xz
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.tar.zst
nixpkgs-07ed06f8da8a12f3ad0fcb65b558a828cebca270.zip
libcommuni: 2016-03-23 -> 2016-08-17
add missing build input (fixes build)
Diffstat (limited to 'pkgs/development/libraries/libcommuni')
-rw-r--r--pkgs/development/libraries/libcommuni/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/libcommuni/default.nix b/pkgs/development/libraries/libcommuni/default.nix
index 77199bf27a3..06a7f54e42b 100644
--- a/pkgs/development/libraries/libcommuni/default.nix
+++ b/pkgs/development/libraries/libcommuni/default.nix
@@ -1,17 +1,18 @@
-{ fetchgit, qtbase, qmakeHook, which, stdenv
+{ stdenv, fetchFromGitHub, qtbase, qtdeclarative, qmakeHook, which
 }:
 
 stdenv.mkDerivation rec {
   name = "libcommuni-${version}";
-  version = "2016-03-23";
+  version = "2016-08-17";
 
-  src = fetchgit {
-    url = "https://github.com/communi/libcommuni.git";
-    rev = "6a5110b25e2838e7dc2c62d16b9fd06d12beee7e";
-    sha256 = "184ah5xqg5pgy8h6fyyz2k0vak1fmhrcidwz828yl4lsvz1vjqh1";
+  src = fetchFromGitHub {
+    owner = "communi";
+    repo = "libcommuni";
+    rev = "dedba6faf57c31c8c70fd563ba12d75a9caee8a3";
+    sha256 = "0wvs53z34vfs5xlln4a6sbd4981svag89xm0f4k20mb1i052b20i";
   };
 
-  buildInputs = [ qtbase ];
+  buildInputs = [ qtbase qtdeclarative ];
   nativeBuildInputs = [ qmakeHook which ];
 
   enableParallelBuild = true;