mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
19 lines
521 B
Nix
19 lines
521 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "genext2fs-1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/genext2fs/genext2fs-1.4.1.tar.gz;
|
|
sha256 = "1z7czvsf3ircvz2cw1cf53yifsq29ljxmj15hbgc79l6gbxbnka0";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://genext2fs.sourceforge.net/;
|
|
description = "A tool to generate ext2 filesystem images without requiring root privileges";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|