summary refs log tree commit diff
path: root/pkgs/tools/filesystems/e2fsprogs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-30 19:11:52 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-30 19:11:52 +0200
commitabbc93f78327747a7b8ed4984bd4be03349e8e92 (patch)
treef835eae94420a59787f0dd5978d90ba40084f255 /pkgs/tools/filesystems/e2fsprogs
parentb8c7091335d77bfe72ce1c0d920b0bd816621fef (diff)
downloadnixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar.gz
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar.bz2
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar.lz
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar.xz
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.tar.zst
nixpkgs-abbc93f78327747a7b8ed4984bd4be03349e8e92.zip
WIP: getting better
Diffstat (limited to 'pkgs/tools/filesystems/e2fsprogs')
-rw-r--r--pkgs/tools/filesystems/e2fsprogs/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/filesystems/e2fsprogs/default.nix b/pkgs/tools/filesystems/e2fsprogs/default.nix
index dcbf7235e49..0e61e1474e8 100644
--- a/pkgs/tools/filesystems/e2fsprogs/default.nix
+++ b/pkgs/tools/filesystems/e2fsprogs/default.nix
@@ -1,14 +1,16 @@
-{ stdenv, fetchurl, pkgconfig, libuuid }:
+{ stdenv, fetchurl, autoreconfHook, gettext, pkgconfig, libuuid }:
 
 stdenv.mkDerivation rec {
-  name = "e2fsprogs-1.42.9";
+  name = "e2fsprogs-1.42.12";
 
   src = fetchurl {
     url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
-    sha256 = "00i83w22sbyq849as9vmaf2xcx1d06npvriyv8m0z81gx43ar4ig";
+    sha256 = "0v0qcfyls0dlrjy8gx9m3s2wbkp5z3lbsr5hb7x8kp8f3bclcy71";
   };
 
-  buildInputs = [ pkgconfig libuuid ];
+  outputs = [ "dev" "out" "bin" "man" ];
+
+  buildInputs = [ pkgconfig /*libuuid*/ ];
 
   crossAttrs = {
     preConfigure = ''
@@ -17,7 +19,8 @@ stdenv.mkDerivation rec {
   };
 
   # libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
-  configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck --enable-symlink-install";
+  # ToDo: failed with shared uuid and blkid
+  configureFlags = "--enable-elf-shlibs --disable-fsck --enable-symlink-install";
 
   enableParallelBuilding = true;