2021-02-04 20:13:39 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, e2fsprogs }:
|
2016-06-15 15:22:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "e2tools";
|
2021-02-04 20:13:39 +00:00
|
|
|
version = "0.1.0";
|
2016-06-15 15:22:03 +01:00
|
|
|
|
2021-02-10 16:54:15 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-02-04 20:13:39 +00:00
|
|
|
owner = "e2tools";
|
|
|
|
repo = "e2tools";
|
|
|
|
rev = "6ee7c2d9015dce7b90c3388096602e307e3bd790";
|
|
|
|
sha256 = "0nlqynrhj6ww7bnfhhfcx6bawii8iyvhgp6vz60zbnpgd68ifcx7";
|
2016-06-15 15:22:03 +01:00
|
|
|
};
|
|
|
|
|
2021-02-04 20:13:39 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2016-06-15 15:22:03 +01:00
|
|
|
buildInputs = [ e2fsprogs ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2021-02-04 20:13:39 +00:00
|
|
|
homepage = "https://e2tools.github.io/";
|
2016-06-15 15:22:03 +01:00
|
|
|
description = "Utilities to read/write/manipulate files in an ext2/ext3 filesystem";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.leenaars ];
|
2016-06-15 15:22:03 +01:00
|
|
|
};
|
|
|
|
}
|