about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/svnfs
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2010-04-19 19:41:41 +0000
committerMarc Weber <marco-oweber@gmx.de>2010-04-19 19:41:41 +0000
commit97f2c09f97589b22535f2ded4bcbaa88dfb72bf1 (patch)
tree13032e05cefd318ad35cbd4b54a63b6a9c5e4384 /pkgs/tools/filesystems/svnfs
parent6ef4de22590476ddfd5984bdf2a804f934e13095 (diff)
readding some python packages I dropped somehow by accident.
This also updates some python libraries and fixes some things I forgot
to patch

svn path=/nixpkgs/trunk/; revision=21171
Diffstat (limited to 'pkgs/tools/filesystems/svnfs')
-rw-r--r--pkgs/tools/filesystems/svnfs/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/svnfs/default.nix b/pkgs/tools/filesystems/svnfs/default.nix
index c4cd2670e89f8..4d04bf6ff3c94 100644
--- a/pkgs/tools/filesystems/svnfs/default.nix
+++ b/pkgs/tools/filesystems/svnfs/default.nix
@@ -1,4 +1,5 @@
-args: with args;
+{ stdenv, fetchurl, automake, autoconf, subversion, fuse, apr, perl }: 
+
 stdenv.mkDerivation {
   name = "svnfs";
 
@@ -22,7 +23,7 @@ stdenv.mkDerivation {
     description = "SvnFs is a filesystem written using FUSE for accessing Subversion repositories";
     homepage = http://www.jmadden.eu/index.php/svnfs/;
     license = "GPLv2";
-    maintainers = [args.lib.maintainers.marcweber];
-    platforms = args.lib.platforms.linux;
+    maintainers = [stdenv.lib.maintainers.marcweber];
+    platforms = stdenv.lib.platforms.linux;
   };
 }