ntfs-3g added

svn path=/nixpkgs/trunk/; revision=9234
This commit is contained in:
Yury G. Kudryashov 2007-09-01 18:15:19 +00:00
parent 1adacdf150
commit 045764d028
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,15 @@
args: with args;
stdenv.mkDerivation {
name = "ntfs3g-1.810";
src = fetchurl {
url = http://www.ntfs-3g.org/ntfs-3g-1.810.tgz;
sha256 = "14hly6i8b6lh1z54prhml1lf457r0dm8ild0ziqxnnp22s6ydqgy";
};
buildInputs = [fuse pkgconfig];
preConfigure="sed -e 's:/sbin:@sbindir@:' -i src/Makefile.in";
configureFlags="--enable-shared --disable-static --exec-prefix=\${prefix}";
meta = {
description = "FUSE-base ntfs driver with full write support";
};
}

View file

@ -3767,6 +3767,10 @@ rec {
db4 = db45;
};
ntfs3g = import ../misc/ntfs-3g {
inherit fetchurl stdenv fuse pkgconfig;
};
pgf = import ../misc/tex/pgf {
inherit fetchurl stdenv;
};