c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
22 lines
502 B
Nix
22 lines
502 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tar2ext4";
|
|
version = "0.9.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "hcsshim";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CvXn5b1kEZ2gYqfKSFRNzqkyOAcfcI1/3etRJTKwqog=";
|
|
};
|
|
|
|
sourceRoot = "source/cmd/tar2ext4";
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "Convert a tar archive to an ext4 image";
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|