podman-tui: 0.1.0 -> 0.2.0

This commit is contained in:
Aaron Jheng 2022-03-11 10:36:54 +00:00 committed by zowoq
parent b2df1cda99
commit fc8fa47cde

View file

@ -4,17 +4,20 @@
, buildGoModule
, btrfs-progs
, gpgme
, libassuan
, lvm2
, testVersion
, podman-tui
}:
buildGoModule rec {
pname = "podman-tui";
version = "0.1.0";
version = "0.2.0";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-tui";
rev = "v${version}";
sha256 = "sha256-qPQSu6l1WkX6sddVr5h1DqKQCyw6vy8S6lXC/ZO4DL8=";
sha256 = "sha256-y5bFr31CQ4JES6tjvThyy7qmoKFC59uwtDMG5r+r8K4=";
};
vendorSha256 = null;
@ -24,12 +27,17 @@ buildGoModule rec {
buildInputs = [
btrfs-progs
gpgme
libassuan
lvm2
];
ldflags = [ "-s" "-w" ];
subPackages = [ "." ];
passthru.tests.version = testVersion {
package = podman-tui;
command = "podman-tui version";
version = "v${version}";
};
meta = with lib; {
homepage = "https://github.com/containers/podman-tui";