nixpkgs/pkgs/tools/filesystems/e2tools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
732 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, e2fsprogs }:
2016-06-15 14:22:03 +00:00
stdenv.mkDerivation rec {
pname = "e2tools";
version = "0.1.0";
2016-06-15 14:22:03 +00:00
src = fetchFromGitHub {
owner = "e2tools";
repo = "e2tools";
rev = "6ee7c2d9015dce7b90c3388096602e307e3bd790";
sha256 = "0nlqynrhj6ww7bnfhhfcx6bawii8iyvhgp6vz60zbnpgd68ifcx7";
2016-06-15 14:22:03 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-06-15 14:22:03 +00:00
buildInputs = [ e2fsprogs ];
enableParallelBuilding = true;
meta = {
homepage = "https://e2tools.github.io/";
2016-06-15 14:22:03 +00: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 14:22:03 +00:00
};
}