summary refs log tree commit diff
path: root/pkgs/applications/networking/seafile-client
diff options
context:
space:
mode:
authorMoritz Maxeiner <moritz@ucworks.org>2014-02-05 18:25:43 +0100
committerMoritz Maxeiner <moritz@ucworks.org>2014-02-05 18:25:43 +0100
commit3d7010b5b70cf9008da986874a76231a37708ffb (patch)
tree4f9918cd5c74e69a9bd581f19cc45b9a86ef923b /pkgs/applications/networking/seafile-client
parent99ba14ee7a94d5f809d024e6fa4bfffba7984040 (diff)
downloadnixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar.gz
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar.bz2
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar.lz
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar.xz
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.tar.zst
nixpkgs-3d7010b5b70cf9008da986874a76231a37708ffb.zip
Dashify seafileShared and seafileClient
Diffstat (limited to 'pkgs/applications/networking/seafile-client')
-rw-r--r--pkgs/applications/networking/seafile-client/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 8640389f9d3..82e5d08da41 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, writeScript, pkgconfig, cmake, qt4, seafileShared, ccnet, makeWrapper}:
+{stdenv, fetchurl, writeScript, pkgconfig, cmake, qt4, seafile-shared, ccnet, makeWrapper}:
 
 stdenv.mkDerivation rec
 {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec
     sha256 = "d98515ea229df702cbe973d85ec0bd5cf3f5282ef1022ba0157d5301b521c8e0";
   };
 
-  buildInputs = [ pkgconfig cmake qt4 seafileShared makeWrapper ];
+  buildInputs = [ pkgconfig cmake qt4 seafile-shared makeWrapper ];
 
   builder = writeScript "${name}-builder.sh" ''
   source $stdenv/setup
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec
   make install
 
   wrapProgram $out/bin/seafile-applet \
-    --suffix PATH : ${ccnet}/bin:${seafileShared}/bin
+    --suffix PATH : ${ccnet}/bin:${seafile-shared}/bin
   '';
 
   meta =