at 15.09-beta 23 lines 789 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "chrpath-0.16"; 5 6 src = fetchurl { 7 url = "https://alioth.debian.org/frs/download.php/file/3979/chrpath-0.16.tar.gz"; 8 sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries"; 13 longDescription = '' 14 chrpath changes, lists or removes the rpath or runpath setting in a 15 binary. The rpath, or runpath if it is present, is where the runtime 16 linker should look for the libraries needed for a program. 17 ''; 18 homepage = https://alioth.debian.org/projects/chrpath/; 19 license = licenses.gpl2; 20 platforms = platforms.linux; 21 maintainers = [ maintainers.bjornfor ]; 22 }; 23}