podman-tui: init at 0.1.0

This commit is contained in:
Aaron Jheng 2022-02-14 14:55:36 +00:00
parent 592c073afd
commit 7c08af790f
No known key found for this signature in database
GPG key ID: F6A547A869D050A3
2 changed files with 43 additions and 0 deletions

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

@ -8925,6 +8925,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 {