chrpath: 0.16 -> 0.17 (#346921)

This commit is contained in:
Nick Cao
2024-10-10 19:29:41 -04:00
committed by GitHub

View File

@@ -1,14 +1,18 @@
{ lib, stdenv, fetchurl }: { lib, stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "chrpath"; pname = "chrpath";
version = "0.16"; version = "0.17";
src = fetchurl { src = fetchurl {
url = "https://alioth-archive.debian.org/releases/${pname}/${pname}/${version}/${pname}-${version}.tar.gz"; url = "https://codeberg.org/pere/chrpath/archive/release-${version}.tar.gz";
sha256 = "0yvfq891mcdkf8g18gjjkn2m5rvs8z4z4cl1vwdhx6f2p9a4q3dv"; hash = "sha256-Sh2syR9OrxyMP3Z/2IHrH+OlCaINBii/l2DZCsEkvQw=";
}; };
nativeBuildInputs = [
autoreconfHook
];
meta = with lib; { meta = with lib; {
description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries"; description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries";
mainProgram = "chrpath"; mainProgram = "chrpath";
@@ -17,8 +21,8 @@ stdenv.mkDerivation rec {
binary. The rpath, or runpath if it is present, is where the runtime binary. The rpath, or runpath if it is present, is where the runtime
linker should look for the libraries needed for a program. linker should look for the libraries needed for a program.
''; '';
homepage = "https://tracker.debian.org/pkg/chrpath"; homepage = "https://codeberg.org/pere/chrpath";
license = licenses.gpl2; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];
}; };