about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-29 05:56:13 -0500
committerGitHub <noreply@github.com>2020-02-29 05:56:13 -0500
commit71fa9c5a1aca314b93bd2ae3ff0591135e9d6633 (patch)
treeb6bec6371303c15174c09ae4da908a53b2ca7589
parent10da6658ad1fbe29da22bed9e05ce45975188d77 (diff)
parentcd02408f254b9f65cc02ef3622b8ae67cbf70ee9 (diff)
downloadnixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar.gz
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar.bz2
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar.lz
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar.xz
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.tar.zst
nixlib-71fa9c5a1aca314b93bd2ae3ff0591135e9d6633.zip
Merge pull request #81315 from zowoq/buildah
buildah: 1.14.0 -> 1.14.1
-rw-r--r--pkgs/development/tools/buildah/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/buildah/default.nix b/pkgs/development/tools/buildah/default.nix
index c9287b7b96ec..3e758af0a7b5 100644
--- a/pkgs/development/tools/buildah/default.nix
+++ b/pkgs/development/tools/buildah/default.nix
@@ -1,16 +1,16 @@
 { stdenv, buildGoPackage, fetchFromGitHub
-, gpgme, libgpgerror, lvm2, btrfs-progs, pkgconfig, libselinux, libseccomp
+, gpgme, libgpgerror, lvm2, btrfs-progs, pkg-config, libselinux, libseccomp
 }:
 
 buildGoPackage rec {
   pname = "buildah";
-  version = "1.14.0";
+  version = "1.14.1";
 
   src = fetchFromGitHub {
     owner  = "containers";
     repo   = "buildah";
     rev    = "v${version}";
-    sha256 = "0nbcrhfd0c14d0m9a4mkd01jxk5i503z38kv2qfz5cvfghx517qq";
+    sha256 = "12x80g83xjcjiafcxyqrhg952nq5w91df35d7lnvc2vz8vvpkyx1";
   };
 
   outputs = [ "bin" "man" "out" ];
@@ -18,7 +18,7 @@ buildGoPackage rec {
   goPackagePath = "github.com/containers/buildah";
   excludedPackages = [ "tests" ];
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ gpgme libgpgerror lvm2 btrfs-progs libselinux libseccomp ];
 
   patches = [ ./disable-go-module-mode.patch ];
@@ -36,7 +36,7 @@ buildGoPackage rec {
 
   meta = with stdenv.lib; {
     description = "A tool which facilitates building OCI images";
-    homepage = "https://github.com/containers/buildah";
+    homepage = "https://buildah.io/";
     changelog = "https://github.com/containers/buildah/releases/tag/v${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ Profpatsch vdemeester saschagrunert ];