Merge pull request #104037 from kampka/toybox

This commit is contained in:
Sandro 2020-12-01 19:25:02 +01:00 committed by GitHub
commit 040f43d890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,13 +7,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "toybox"; pname = "toybox";
version = "0.8.3"; version = "0.8.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "landley"; owner = "landley";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0cb1n0skanwwkwgzlswwhvfb4iji1bw9iqskmczlhakpw3j1yaqa"; sha256 = "0cgbmv6qk1haj709hjx5q4sl7wgh91i459gzs1203adwc7rvk6jv";
}; };
buildInputs = lib.optionals enableStatic [ stdenv.cc.libc stdenv.cc.libc.static ]; buildInputs = lib.optionals enableStatic [ stdenv.cc.libc stdenv.cc.libc.static ];
@ -60,6 +60,8 @@ stdenv.mkDerivation rec {
homepage = "https://landley.net/toybox/"; homepage = "https://landley.net/toybox/";
license = licenses.bsd0; license = licenses.bsd0;
platforms = with platforms; linux ++ darwin ++ freebsd; platforms = with platforms; linux ++ darwin ++ freebsd;
# https://github.com/NixOS/nixpkgs/issues/101229
broken = stdenv.isDarwin;
maintainers = with maintainers; [ hhm ]; maintainers = with maintainers; [ hhm ];
priority = 10; priority = 10;
}; };