nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "chrpath-0.16";
5
6 src = fetchurl {
7 url = "https://alioth-archive.debian.org/releases/chrpath/chrpath/0.16/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://tracker.debian.org/pkg/chrpath;
19 license = licenses.gpl2;
20 platforms = platforms.linux;
21 maintainers = [ maintainers.bjornfor ];
22 };
23}