depot/third_party/nixpkgs/pkgs/development/tools/misc/chrpath/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
793 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "chrpath-0.16";
src = fetchurl {
url = "https://alioth-archive.debian.org/releases/chrpath/chrpath/0.16/chrpath-0.16.tar.gz";
sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv";
};
meta = with stdenv.lib; {
description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries";
longDescription = ''
chrpath changes, lists or removes the rpath or runpath setting in a
binary. The rpath, or runpath if it is present, is where the runtime
linker should look for the libraries needed for a program.
'';
homepage = "https://tracker.debian.org/pkg/chrpath";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
}