e2a374799f
a worthy goal to move the Python packages that are currently in all-packages.nix into a single attribute set, but this doesn't require moving python-packages.nix or the other changes made to that file. The Python packages in all-packages.nix should simply be moved to python-packages.nix, and ideally changed to use buildPythonPackage. svn path=/nixpkgs/trunk/; revision=21196
29 lines
769 B
Nix
29 lines
769 B
Nix
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;
|
|
};
|
|
}
|