ntfs progs added
svn path=/nixpkgs/branches/stdenv-updates/; revision=9876
This commit is contained in:
parent
d477d95f31
commit
637cb977e5
|
@ -0,0 +1,18 @@
|
||||||
|
args:
|
||||||
|
args.stdenv.mkDerivation {
|
||||||
|
name = "ntfsprogs-2.0.0";
|
||||||
|
|
||||||
|
src = args.fetchurl {
|
||||||
|
name = "ntfsprogs-2.0.0.tar.bz2";
|
||||||
|
url = "http://garr.dl.sourceforge.net/sourceforge/linux-ntfs/ntfsprogs-2.0.0.tar.bz2";
|
||||||
|
sha256 = "ad36e19706c7303b10aa0a9bf2c2dd0309b91cd0171f1c9eb361d94a85017432";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =(with args; []);
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "ntfs utilities";
|
||||||
|
homepage = http://sourceforge.net/projects/linux-ntfs;
|
||||||
|
license = "GPL";
|
||||||
|
};
|
||||||
|
}
|
|
@ -4390,6 +4390,10 @@ rec {
|
||||||
inherit fetchurl stdenv fuse pkgconfig;
|
inherit fetchurl stdenv fuse pkgconfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ntfprogs = import ../misc/ntfsprogs {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
pgf = import ../misc/tex/pgf {
|
pgf = import ../misc/tex/pgf {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue