Merge pull request #94152 from dtzWill/update/bloaty-1.1

bloaty: 1.0 -> 1.1
This commit is contained in:
xeji 2020-07-30 23:08:03 +02:00 committed by GitHub
commit 01b300613e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ stdenv, cmake, zlib, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.0";
version = "1.1";
pname = "bloaty";
src = fetchFromGitHub {
owner = "google";
repo = "bloaty";
rev = "v${version}";
sha256 = "0fck83zyh9bwlwdk3fkhv3337g9nii6rzf96gyghmnrsp9rzxs3l";
sha256 = "1556gb8gb8jwf5mwxppcqz3mp269b5jhd51kj341iqkbn27zzngk";
fetchSubmodules = true;
};
@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/google/bloaty";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers.dtzWill ];
maintainers = with maintainers; [ dtzWill ];
};
}