about summary refs log tree commit diff
path: root/pkgs/tools/misc/toybox
diff options
context:
space:
mode:
authorChristian Kampka <christian@kampka.net>2020-11-17 10:21:38 +0100
committerChristian Kampka <christian@kampka.net>2020-11-26 08:18:22 +0100
commita41e85dbe8d8b4c99c6d91a0046bf03e64d259df (patch)
treefc3f2c8fd74e941b03b490fe4c6867ed72f9b883 /pkgs/tools/misc/toybox
parentd7491cea3d197bc9e5dde67f9b158fa20adc589c (diff)
toybox: 0.8.3 -> 0.8.4
Diffstat (limited to 'pkgs/tools/misc/toybox')
-rw-r--r--pkgs/tools/misc/toybox/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/misc/toybox/default.nix b/pkgs/tools/misc/toybox/default.nix
index 23fdc2f7135cd..9b38db5a7273f 100644
--- a/pkgs/tools/misc/toybox/default.nix
+++ b/pkgs/tools/misc/toybox/default.nix
@@ -7,13 +7,13 @@
 
 stdenv.mkDerivation rec {
   pname = "toybox";
-  version = "0.8.3";
+  version = "0.8.4";
 
   src = fetchFromGitHub {
     owner = "landley";
     repo = pname;
     rev = version;
-    sha256 = "0cb1n0skanwwkwgzlswwhvfb4iji1bw9iqskmczlhakpw3j1yaqa";
+    sha256 = "0cgbmv6qk1haj709hjx5q4sl7wgh91i459gzs1203adwc7rvk6jv";
   };
 
   buildInputs = lib.optionals enableStatic [ stdenv.cc.libc stdenv.cc.libc.static ];
@@ -60,6 +60,8 @@ stdenv.mkDerivation rec {
     homepage = "https://landley.net/toybox/";
     license = licenses.bsd0;
     platforms = with platforms; linux ++ darwin ++ freebsd;
+    # https://github.com/NixOS/nixpkgs/issues/101229
+    broken = stdenv.isDarwin;
     maintainers = with maintainers; [ hhm ];
     priority = 10;
   };