biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / buildah / default.nix
blob7535394a555191258967c87a024abe3cebeb7d3a
1 { lib
2 , stdenv
3 , buildGoModule
4 , fetchFromGitHub
5 , go-md2man
6 , installShellFiles
7 , pkg-config
8 , gpgme
9 , lvm2
10 , btrfs-progs
11 , libapparmor
12 , libselinux
13 , libseccomp
14 , testers
15 , buildah
18 buildGoModule rec {
19   pname = "buildah";
20   version = "1.35.3";
22   src = fetchFromGitHub {
23     owner = "containers";
24     repo = "buildah";
25     rev = "v${version}";
26     hash = "sha256-FqgYpCvEEqgnhCHdHN1/inxMJoOjoHLc/xMfhXsA1nc=";
27   };
29   outputs = [ "out" "man" ];
31   vendorHash = null;
33   doCheck = false;
35   nativeBuildInputs = [ go-md2man installShellFiles pkg-config ];
37   buildInputs = [
38     gpgme
39   ] ++ lib.optionals stdenv.isLinux [
40     btrfs-progs
41     libapparmor
42     libseccomp
43     libselinux
44     lvm2
45   ];
47   buildPhase = ''
48     runHook preBuild
49     patchShebangs .
50     make bin/buildah
51     make -C docs GOMD2MAN="go-md2man"
52     runHook postBuild
53   '';
55   installPhase = ''
56     runHook preInstall
57     install -Dm755 bin/buildah $out/bin/buildah
58     installShellCompletion --bash contrib/completions/bash/buildah
59     make -C docs install PREFIX="$man"
60     runHook postInstall
61   '';
63   passthru.tests.version = testers.testVersion {
64     package = buildah;
65     command = ''
66       XDG_DATA_HOME="$TMPDIR" XDG_CACHE_HOME="$TMPDIR" XDG_CONFIG_HOME="$TMPDIR" \
67       buildah --version
68     '';
69   };
71   meta = with lib; {
72     description = "A tool which facilitates building OCI images";
73     mainProgram = "buildah";
74     homepage = "https://buildah.io/";
75     changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
76     license = licenses.asl20;
77     maintainers = with maintainers; [ ] ++ teams.podman.members;
78   };