blob: 7f4f84948f3a4a6034bc2b8ba65b7a12bae60fa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{ lib, stdenv, fetchFromGitHub, buildGoModule, testers, podman-tui }:
buildGoModule rec {
pname = "podman-tui";
version = "1.2.1";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-tui";
rev = "v${version}";
hash = "sha256-Is4qpN6i8zBK0WNYbb/YhtzsrgOth9sQdUT81sx7i7g=";
};
vendorHash = null;
CGO_ENABLED = 0;
tags = [ "containers_image_openpgp" "remote" ]
++ lib.optional stdenv.hostPlatform.isDarwin "darwin";
ldflags = [ "-s" "-w" ];
preCheck = ''
export USER="$(whoami)"
export HOME="$(mktemp -d)"
'';
checkFlags =
let
skippedTests = [
# Disable flaky tests
"TestDialogs"
"TestVoldialogs"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
passthru.tests.version = testers.testVersion {
package = podman-tui;
command = "HOME=$(mktemp -d) podman-tui version";
version = "v${version}";
};
meta = with lib; {
homepage = "https://github.com/containers/podman-tui";
description = "Podman Terminal UI";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "podman-tui";
};
}
|