nixpkgs/pkgs/tools/filesystems/genext2fs/default.nix
Eelco Dolstra c726012afe * Refactoring: move most filesystem utilities / FUSE filesystems to
tools/filesystems.  Previously they were all over the place.

svn path=/nixpkgs/trunk/; revision=18809
2009-12-04 15:39:49 +00:00

10 lines
231 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";
};
}