bloaty: 2017-10-05 -> 2018-05-22

* add zlib dep (cmake tries to find it, provide it JIC)
* no need to populate with path to c++filt, handled internally now
* continue to copy ourselves, new install target isn't ready yet
This commit is contained in:
Will Dietz 2018-05-22 16:04:56 -05:00
parent 71da438f21
commit b7fe62d532

View File

@ -1,26 +1,22 @@
{ stdenv, binutils, cmake, fetchFromGitHub }: { stdenv, binutils, cmake, zlib, fetchFromGitHub }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2017-10-05"; version = "2018-05-22";
name = "bloaty-${version}"; name = "bloaty-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "google"; owner = "google";
repo = "bloaty"; repo = "bloaty";
rev = "e47b21b01ceecf001e1965e9da249d48d86a1749"; rev = "054788b091ccfd43b05b9817062139145096d440";
sha256 = "1il3z49hi0b07agjwr5fg1wzysfxsamfv1snvlp33vrlyl1m7cbm"; sha256 = "0pmv66137ipzsjjdz004n61pz3aipjhh3b0w0y1406clqpwkvpjm";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
enableParallelBuilding = true; buildInputs = [ zlib ];
preConfigure = '' enableParallelBuilding = true;
substituteInPlace src/bloaty.cc \
--replace "c++filt" \
"${binutils.bintools}/bin/c++filt"
'';
doCheck = true; doCheck = true;