mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Added dosfstools
svn path=/nixpkgs/trunk/; revision=10487
This commit is contained in:
parent
9a9a078ccf
commit
652984a43b
33
pkgs/tools/misc/dosfstools/2.11deb.nix
Normal file
33
pkgs/tools/misc/dosfstools/2.11deb.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue