1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://alioth-archive.debian.org/releases/${pname}/${pname}/${version}/${pname}-${version}.tar.gz";
9 sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv";
13 description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries";
14 mainProgram = "chrpath";
16 chrpath changes, lists or removes the rpath or runpath setting in a
17 binary. The rpath, or runpath if it is present, is where the runtime
18 linker should look for the libraries needed for a program.
20 homepage = "https://tracker.debian.org/pkg/chrpath";
21 license = licenses.gpl2;
22 platforms = platforms.linux;
23 maintainers = [ maintainers.bjornfor ];