about summary refs log tree commit diff
path: root/pkgs/development/tools/bundletool
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-09-03 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-09-03 04:20:00 +0000
commit1d8239c9b6cfd0a7a7513527986cfd943dc0be36 (patch)
tree56daef8d924e47bae4de4489cc231bdbb1658fac /pkgs/development/tools/bundletool
parent73ff5d3db37262657d568cd714bdd442074e0108 (diff)
bundletool: 1.11.0 -> 1.11.1
https://github.com/google/bundletool/releases/tag/1.11.1
Diffstat (limited to 'pkgs/development/tools/bundletool')
-rw-r--r--pkgs/development/tools/bundletool/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/bundletool/default.nix b/pkgs/development/tools/bundletool/default.nix
index 2c9e9092939cc..24306ddf41739 100644
--- a/pkgs/development/tools/bundletool/default.nix
+++ b/pkgs/development/tools/bundletool/default.nix
@@ -1,12 +1,12 @@
-{ lib, stdenv, fetchurl, makeBinaryWrapper, jre_headless }:
+{ lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre_headless }:
 
-stdenv.mkDerivation rec {
+stdenvNoCC.mkDerivation rec {
   pname = "bundletool";
-  version = "1.11.0";
+  version = "1.11.1";
 
   src = fetchurl {
     url = "https://github.com/google/bundletool/releases/download/${version}/bundletool-all-${version}.jar";
-    sha256 = "sha256-xCw2Wuc2ndTcLrwR7uv5FFnwImxTcG/STeTQBiaKuIw=";
+    sha256 = "sha256-Zlk6wUQBftst8Tx+dAT67/WBID1BHD4aSAvRcGO9ErE=";
   };
 
   dontUnpack = true;