Merge pull request #298842 from aaronjheng/podman-tui

podman-tui: 0.18.0 -> 1.0.0
This commit is contained in:
Mario Rodas 2024-03-25 21:31:13 -05:00 committed by GitHub
commit e579156a5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "podman-tui";
version = "0.18.0";
version = "1.0.0";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-tui";
rev = "v${version}";
hash = "sha256-T2hiCRoZqdbcB36Tpy597j7Hc1yeR2MijQbuheENfuA=";
hash = "sha256-sJaiZJeT0oUAnSg9Kv8uMp1XoumumC3LB77lelmwSgw=";
};
vendorHash = null;
@ -24,11 +24,11 @@ buildGoModule rec {
let
skippedTests = [
"TestDialogs"
"TestVoldialogs"
];
in
''
export USER=$(whoami)
export HOME=/home/$USER
export HOME="$(mktemp -d)"
# Disable flaky tests
buildFlagsArray+=("-run" "[^(${builtins.concatStringsSep "|" skippedTests})]")
@ -36,7 +36,7 @@ buildGoModule rec {
passthru.tests.version = testers.testVersion {
package = podman-tui;
command = "podman-tui version";
command = "HOME=$(mktemp -d) podman-tui version";
version = "v${version}";
};