mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #16246 from leenaars/e2tools
e2tools: init -> 0.0.16
This commit is contained in:
commit
05c4ddb0db
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/filesystems/e2tools/default.nix
Normal file
25
pkgs/tools/filesystems/e2tools/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -1369,6 +1369,8 @@ in
|
|||
|
||||
dvtm = callPackage ../tools/misc/dvtm { };
|
||||
|
||||
e2tools = callPackage ../tools/filesystems/e2tools { };
|
||||
|
||||
e2fsprogs = callPackage ../tools/filesystems/e2fsprogs { };
|
||||
|
||||
easyrsa = callPackage ../tools/networking/easyrsa { };
|
||||
|
|
Loading…
Reference in a new issue