mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
ntfs-3g added
svn path=/nixpkgs/trunk/; revision=9234
This commit is contained in:
parent
1adacdf150
commit
045764d028
15
pkgs/misc/ntfs-3g/default.nix
Normal file
15
pkgs/misc/ntfs-3g/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user