summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/filesystems/genext2fs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-04 15:39:49 +0000
commitc726012afe1dbd13da7ab15381e3de2867bc8af5 (patch)
tree123888653c98ee60761109c9b3c59f706695b064 /pkgs/tools/filesystems/genext2fs
parent064aae6461971ed76ff4ed5bc8e043840592c04a (diff)
* Refactoring: move most filesystem utilities / FUSE filesystems to
tools/filesystems. Previously they were all over the place. svn path=/nixpkgs/trunk/; revision=18809
Diffstat (limited to 'pkgs/tools/filesystems/genext2fs')
-rw-r--r--pkgs/tools/filesystems/genext2fs/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/genext2fs/default.nix b/pkgs/tools/filesystems/genext2fs/default.nix
new file mode 100644
index 000000000000..d58167ab8473
--- /dev/null
+++ b/pkgs/tools/filesystems/genext2fs/default.nix
@@ -0,0 +1,9 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+ name = "genext2fs-1.4.1";
+ src = fetchurl {
+ url = mirror://sourceforge/genext2fs/genext2fs-1.4.1.tar.gz;
+ sha256 = "1z7czvsf3ircvz2cw1cf53yifsq29ljxmj15hbgc79l6gbxbnka0";
+ };
+}