Merge pull request #47539 from bhipple/l/patchelf

patchelf: fix license
This commit is contained in:
Matthew Bauer 2018-09-29 16:24:20 -05:00 committed by GitHub
commit 99add16af3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,11 +12,11 @@ stdenv.mkDerivation rec {
doCheck = false; # fails 8 out of 24 tests, problems when loading libc.so.6
meta = {
meta = with stdenv.lib; {
homepage = https://nixos.org/patchelf.html;
license = "GPL";
license = licenses.gpl3;
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.all;
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
};
}