nixpkgs/pkgs/misc/ntfs-3g/default.nix
Yury G. Kudryashov 045764d028 ntfs-3g added
svn path=/nixpkgs/trunk/; revision=9234
2007-09-01 18:15:19 +00:00

16 lines
471 B
Nix

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";
};
}