adding svnFS

svn path=/nixpkgs/trunk/; revision=21132
This commit is contained in:
Marc Weber 2010-04-16 15:56:31 +00:00
parent 6ce15d655f
commit a772868bca
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,28 @@
args: with args;
stdenv.mkDerivation {
name = "svnfs";
src = fetchurl {
url = http://www.jmadden.eu/wp-content/uploads/svnfs/svnfs-0.4.tgz;
sha256 = "1lrzjr0812lrnkkwk60bws9k1hq2iibphm0nhqyv26axdsygkfky";
};
buildInputs = [automake autoconf subversion fuse apr perl];
# why is this required?
preConfigure=''
export LD_LIBRARY_PATH=${subversion}/lib
'';
NIX_CFLAGS_COMPILE="-I ${subversion}/include/subversion-1";
NIX_LDFLAGS="-lsvn_client-1";
meta = {
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;
};
}

View file

@ -1627,6 +1627,10 @@ let
inherit (perlPackages) LWP URI HTMLParser HTTPServerSimple Parent;
};
svnFS = import ../tools/filesystems/svnfs {
inherit fetchurl stdenv automake autoconf perl fuse subversion apr;
};
system_config_printer = import ../tools/misc/system-config-printer {
inherit stdenv fetchurl perl perlXMLParser desktop_file_utils;
};