2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-06-22 13:05:26 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2014-06-22 13:05:26 +01:00
|
|
|
name = "chrpath-0.16";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-16 10:32:05 +00:00
|
|
|
url = "https://alioth-archive.debian.org/releases/chrpath/chrpath/0.16/chrpath-0.16.tar.gz";
|
2014-06-22 13:05:26 +01:00
|
|
|
sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv";
|
|
|
|
};
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2014-06-22 13:05:26 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://tracker.debian.org/pkg/chrpath";
|
2014-06-22 13:05:26 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|