undocker: init at 1.0.3

This commit is contained in:
Jordan Isaacs 2022-11-21 10:46:13 -05:00
parent 19230cff31
commit 98156284c2
No known key found for this signature in database
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, buildGoModule
, fetchFromSourcehut
}:
buildGoModule rec {
pname = "undocker";
version = "1.0.3";
src = fetchFromSourcehut {
owner = "~motiejus";
repo = pname;
rev = "v${version}";
hash = "sha256-SmtM25sijcm5NF0ZrSqrRQDXiLMNp8WGAZX9yKvj1rQ=";
};
vendorHash = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
meta = with lib; {
homepage = "https://git.sr.ht/~motiejus/undocker";
description = "A CLI tool to convert a Docker image to a flattened rootfs tarball";
license = licenses.mit;
maintainers = with maintainers; [ jordanisaacs ];
};
}

View File

@ -631,6 +631,8 @@ with pkgs;
docker-sync = callPackage ../tools/misc/docker-sync { };
undocker = callPackage ../tools/misc/undocker { };
dockle = callPackage ../development/tools/dockle { };
docui = callPackage ../tools/misc/docui { };