* Fixed ntfsprogs.

svn path=/nixpkgs/trunk/; revision=14695
This commit is contained in:
Eelco Dolstra 2009-03-25 10:55:28 +00:00
parent 6b8acbd2dc
commit f3815e7ad5
2 changed files with 17 additions and 8 deletions

View File

@ -1,16 +1,23 @@
args: with args; {stdenv, fetchurl, libuuid}:
args.stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "ntfsprogs-2.0.0"; name = "ntfsprogs-2.0.0";
src = fetchurl { src = fetchurl {
name = "ntfsprogs-2.0.0.tar.bz2"; url = "mirror://sourceforge/linux-ntfs/${name}.tar.bz2";
url = "http://garr.dl.sourceforge.net/sourceforge/linux-ntfs/ntfsprogs-2.0.0.tar.bz2";
sha256 = "ad36e19706c7303b10aa0a9bf2c2dd0309b91cd0171f1c9eb361d94a85017432"; sha256 = "ad36e19706c7303b10aa0a9bf2c2dd0309b91cd0171f1c9eb361d94a85017432";
}; };
buildInputs = [libuuid];
preConfigure =
''
substituteInPlace ntfsprogs/Makefile.in --replace /sbin $out/sbin
'';
meta = { meta = {
description = "ntfs utilities"; description = "Utilities for the NTFS filesystem";
homepage = http://sourceforge.net/projects/linux-ntfs; homepage = http://sourceforge.net/projects/linux-ntfs;
license = "GPL"; license = "GPL";
}; };
} }

View File

@ -6658,6 +6658,8 @@ let
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
libuuid = e2fsprogs;
e3cfsprogs = import ../os-specific/linux/e3cfsprogs { e3cfsprogs = import ../os-specific/linux/e3cfsprogs {
inherit stdenv fetchurl gettext; inherit stdenv fetchurl gettext;
}; };
@ -9544,7 +9546,7 @@ let
}; };
ntfsprogs = import ../misc/ntfsprogs { ntfsprogs = import ../misc/ntfsprogs {
inherit fetchurl stdenv; inherit fetchurl stdenv libuuid;
}; };
pgadmin = import ../applications/misc/pgadmin { pgadmin = import ../applications/misc/pgadmin {