summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/gobby
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-08 12:06:03 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-08 12:06:03 +0000
commitc35c6ec9fa326f092c6640c9f06b19ed15115765 (patch)
tree7cff6b3f94bf435420d097cf550a57d17e86680e /pkgs/applications/editors/gobby
parentbc0b96370f623a81779b1d5c7dcf4461eb04138e (diff)
Drop 'gnomevfs = gnome_vfs;' alias
s/gnomevfs/gnome_vfs/ in packages svn path=/nixpkgs/trunk/; revision=29718
Diffstat (limited to 'pkgs/applications/editors/gobby')
-rw-r--r--pkgs/applications/editors/gobby/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/gobby/default.nix b/pkgs/applications/editors/gobby/default.nix
index ea86f9caf528..badd18b8915b 100644
--- a/pkgs/applications/editors/gobby/default.nix
+++ b/pkgs/applications/editors/gobby/default.nix
@@ -2,7 +2,7 @@
, gnomeSupport ? false # build support for Gnome(gnome-vfs)
, stdenv, fetchurl, pkgconfig
, gtkmm, gsasl, gtksourceview, libxmlxx, libinfinity, intltool
-, gnomevfs ? null}:
+, gnome_vfs ? null}:
let
libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; };
@@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig gtkmm gsasl gtksourceview libxmlxx libinf intltool ]
- ++ stdenv.lib.optional gnomeSupport gnomevfs;
+ ++ stdenv.lib.optional gnomeSupport gnome_vfs;
configureFlags = ''
'';
@@ -28,4 +28,4 @@ in stdenv.mkDerivation rec {
maintainers = [ maintainers.phreedom ];
platforms = platforms.all;
};
-} \ No newline at end of file
+}