Merge pull request #159993 from aaronjheng/podman-tui

podman-tui: init at 0.1.0
This commit is contained in:
zowoq 2022-02-15 17:09:07 +10:00 committed by GitHub
commit 6abf580b6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 49 additions and 0 deletions

View File

@ -145,6 +145,12 @@
githubId = 16829510;
name = "Aaron Janse";
};
aaronjheng = {
email = "wentworth@outlook.com";
github = "aaronjheng";
githubId = 806876;
name = "Aaron Jheng";
};
aaronschif = {
email = "aaronschif@gmail.com";
github = "aaronschif";

View File

@ -0,0 +1,41 @@
{ lib
, pkg-config
, fetchFromGitHub
, buildGoModule
, btrfs-progs
, gpgme
, lvm2
}:
buildGoModule rec {
pname = "podman-tui";
version = "0.1.0";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-tui";
rev = "v${version}";
sha256 = "sha256-qPQSu6l1WkX6sddVr5h1DqKQCyw6vy8S6lXC/ZO4DL8=";
};
vendorSha256 = null;
nativeBuildInputs = [ pkg-config ];
buildInputs = [
btrfs-progs
gpgme
lvm2
];
ldflags = [ "-s" "-w" ];
subPackages = [ "." ];
meta = with lib; {
homepage = "https://github.com/containers/podman-tui";
description = "Podman Terminal UI";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
platforms = platforms.linux;
};
}

View File

@ -8931,6 +8931,8 @@ with pkgs;
podman-compose = python3Packages.callPackage ../applications/virtualization/podman-compose {};
podman-tui = callPackage ../applications/virtualization/podman-tui { };
pod2mdoc = callPackage ../tools/misc/pod2mdoc { };
poedit = callPackage ../tools/text/poedit {