biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / chrpath / default.nix
blob32cb4864a35749bb144052e16add77cf4cc06340
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "chrpath";
5   version = "0.16";
7   src = fetchurl {
8     url = "https://alioth-archive.debian.org/releases/${pname}/${pname}/${version}/${pname}-${version}.tar.gz";
9     sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv";
10   };
12   meta = with lib; {
13     description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries";
14     mainProgram = "chrpath";
15     longDescription = ''
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.
19     '';
20     homepage = "https://tracker.debian.org/pkg/chrpath";
21     license = licenses.gpl2;
22     platforms = platforms.linux;
23     maintainers = [ maintainers.bjornfor ];
24   };