{ stdenv, fetchgit }: stdenv.mkDerivation { name = "busybox-yerba"; src = fetchgit { url = "https://mirror.cgicoders.com/busybox.net/busybox"; # change this to the official git.busybox.net/busybox when their SSL comes back rev = "1_36_1"; hash = ""; }; preConfigure = '' cp ${./busybox_config} .config ''; installPhase = '' make install CONFIG_PREFIX=$out ''; }