summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-26 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-08-26 04:20:00 +0000
commit8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217 (patch)
tree0008018140b914f4bffd7d7b5ff62ed547034574
parent0544bc2f2949183f6adbee30dc45f754fffac369 (diff)
downloadnixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar.gz
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar.bz2
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar.lz
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar.xz
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.tar.zst
nixpkgs-8ff2f9c05fe09ee97d69fc27d6a337a2e56ae217.zip
buildkit: 0.12.1 -> 0.12.2
Diff: https://github.com/moby/buildkit/compare/v0.12.1...v0.12.2

Changelog: https://github.com/moby/buildkit/releases/tag/v0.12.2
-rw-r--r--pkgs/development/tools/buildkit/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/buildkit/default.nix b/pkgs/development/tools/buildkit/default.nix
index 93b8b38ec9c..6787ca6b07d 100644
--- a/pkgs/development/tools/buildkit/default.nix
+++ b/pkgs/development/tools/buildkit/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "buildkit";
-  version = "0.12.1";
+  version = "0.12.2";
 
   src = fetchFromGitHub {
     owner = "moby";
     repo = "buildkit";
     rev = "v${version}";
-    hash = "sha256-Fee/XuxtNP9+T8kRd3yeEhFvpfaIgMkqfSaZCpaYEdM=";
+    hash = "sha256-u85Yrg3aMG6Tx8onivSy1p7yB4lZxsBWF4bxnwO68EE=";
   };
 
   vendorHash = null;
@@ -22,6 +22,7 @@ buildGoModule rec {
   meta = with lib; {
     description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit";
     homepage = "https://github.com/moby/buildkit";
+    changelog = "https://github.com/moby/buildkit/releases/tag/v${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ vdemeester marsam developer-guy ];
     mainProgram = "buildctl";