Merge pull request #134650 from alyssais/tar2ext4

tar2ext4: init at 0.8.20
This commit is contained in:
Maximilian Bosch 2021-08-19 13:07:59 +02:00 committed by GitHub
commit dcf02eb76a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tar2ext4";
version = "0.8.20";
src = fetchFromGitHub {
owner = "microsoft";
repo = "hcsshim";
rev = "v${version}";
sha256 = "sha256-X7JsUFL9NkNT7ihE5olrqMUP8RnoVC10KLrQeT/OU3o=";
};
sourceRoot = "source/cmd/tar2ext4";
vendorSha256 = null;
meta = with lib; {
description = "Convert a tar archive to an ext4 image";
maintainers = with maintainers; [ qyliss ];
license = licenses.mit;
};
}

View File

@ -9296,6 +9296,8 @@ with pkgs;
znapzend = callPackage ../tools/backup/znapzend { };
tar2ext4 = callPackage ../tools/filesystems/tar2ext4 { };
targetcli = callPackage ../os-specific/linux/targetcli { };
target-isns = callPackage ../os-specific/linux/target-isns { };