nixpkgs/pkgs/development/tools/bloaty/default.nix

33 lines
697 B
Nix
Raw Normal View History

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