Added dosfstools

svn path=/nixpkgs/trunk/; revision=10487
This commit is contained in:
Michael Raskin 2008-02-04 04:41:55 +00:00
parent 9a9a078ccf
commit 652984a43b
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,33 @@
args : with args; with builderDefs {src="";} null;
let patch =
fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/d/dosfstools/dosfstools_2.11-2.3.diff.gz;
sha256 = "0bzjhpgg4ih6c76ax8byis9vxgkr2c7bbbshqrkfq8j7ar48n5ld";
};
localDefs = builderDefs (rec {
src = /* put a fetchurl here */
fetchurl {
url = http://ftp.de.debian.org/debian/pool/main/d/dosfstools/dosfstools_2.11.orig.tar.gz;
sha256 = "1154k0y04npblgac81p4pcmglilk1ldrqll4hvbrwgcb7096vb0f";
};
preBuild = FullDepEntry (''
gunzip < ${patch} | patch -Np1
'')["minInit" "doUnpack"];
buildInputs = [];
configureFlags = [];
makeFlags = " PREFIX=$out ";
}) null; /* null is a terminator for sumArgs */
in with localDefs;
stdenv.mkDerivation rec {
name = "dosfstools-"+version;
builder = writeScript (name + "-builder")
(textClosure localDefs
[preBuild "doMakeInstall" doForceShare doPropagate]);
meta = {
description = "
Dosfstools - utilities for vfat file system.
";
homepage = "http://sixpak.org/dosfstools/dosfstools-2.8vb2.tar.gz";
};
}

View file

@ -410,6 +410,14 @@ rec {
inherit fetchurl stdenv coreutils;
});
dosfstoolsFun = lib.sumArgs (selectVersion ../tools/misc/dosfstools)
{
inherit builderDefs;
version = "2.11deb";
};
dosfstools = dosfstoolsFun null;
ed = import ../tools/text/ed {
inherit fetchurl stdenv;
};