add genext2fs, a tool to create ext2fs images, without having to be root

svn path=/nixpkgs/trunk/; revision=8659
This commit is contained in:
Armijn Hemel 2007-05-11 22:26:18 +00:00
parent 4c05f557a8
commit 8a04982b8a
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "e2fsprogs-1.39";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/genext2fs/genext2fs-1.4.1.tar.gz;
sha256 = "1z7czvsf3ircvz2cw1cf53yifsq29ljxmj15hbgc79l6gbxbnka0";
};
}

View File

@ -2187,6 +2187,10 @@ rec {
inherit fetchurl stdenv;
};
genext2fs = import ../os-specific/linux/genext2fs {
inherit fetchurl stdenv;
};
hdparm = import ../os-specific/linux/hdparm {
inherit fetchurl stdenv;
};