summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2016-06-15 16:22:03 +0200
committerMichiel Leenaars <ml.software@leenaa.rs>2016-06-15 16:22:03 +0200
commitd56850dd49eddf1a934f017333d406acd806abec (patch)
treec86b2cd2afaf49eae242f3e99641f64fc591d1a2 /pkgs/tools/filesystems
parent7102c3c0c4eea385f5f2d7b52dab37ba46216356 (diff)
downloadnixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar.gz
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar.bz2
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar.lz
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar.xz
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.tar.zst
nixpkgs-d56850dd49eddf1a934f017333d406acd806abec.zip
e2tools: init -> 0.0.16
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/e2tools/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/e2tools/default.nix b/pkgs/tools/filesystems/e2tools/default.nix
new file mode 100644
index 00000000000..dcaad81a5a3
--- /dev/null
+++ b/pkgs/tools/filesystems/e2tools/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, e2fsprogs }:
+
+stdenv.mkDerivation rec {
+  pname = "e2tools";
+  version = "0.0.16";
+  name = "${pname}-${version}";
+
+  src = fetchurl {
+    url = "http://home.earthlink.net/~k_sheff/sw/${pname}/${name}.tar.gz";
+    sha256 = "16wlc54abqz06dpipjdkw58bncpkxlj5f55lkzy07k3cg0bqwg2f";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ e2fsprogs ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://home.earthlink.net/~k_sheff/sw/e2tools/;
+    description = "Utilities to read/write/manipulate files in an ext2/ext3 filesystem";
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.leenaars ];
+  };
+}