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
1 changed files with 3 additions and 3 deletions

View File

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