2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, cmake, zlib, fetchFromGitHub }:
|
2016-11-08 20:13:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-26 23:15:55 +01:00
|
|
|
version = "1.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bloaty";
|
2016-11-08 20:13:50 +00:00
|
|
|
|
2017-07-19 12:45:28 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "bloaty";
|
2018-08-08 14:35:46 +01:00
|
|
|
rev = "v${version}";
|
2020-05-26 23:15:55 +01:00
|
|
|
sha256 = "1556gb8gb8jwf5mwxppcqz3mp269b5jhd51kj341iqkbn27zzngk";
|
2016-11-08 20:13:50 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2017-07-19 12:45:28 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2018-05-22 22:04:56 +01:00
|
|
|
buildInputs = [ zlib ];
|
2016-11-08 20:13:50 +00:00
|
|
|
|
2017-07-19 12:45:28 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2016-11-08 20:13:50 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 {.,$out/bin}/bloaty
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2016-11-08 20:13:50 +00:00
|
|
|
description = "a size profiler for binaries";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/google/bloaty";
|
2016-11-08 20:13:50 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2020-05-26 23:15:55 +01:00
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
2016-11-08 20:13:50 +00:00
|
|
|
};
|
|
|
|
}
|