Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

35 lines
917 B
Nix

{
lib,
stdenv,
fetchurl,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "chrpath";
version = "0.18";
src = fetchurl {
url = "https://codeberg.org/pere/chrpath/archive/release-${finalAttrs.version}.tar.gz";
hash = "sha256-8JxJ8GGGYMoR/G2VgN3ekExyJNTG0Pby0fm83JECyao=";
};
nativeBuildInputs = [
autoreconfHook
];
meta = {
description = "Command line tool to adjust the RPATH or RUNPATH of ELF binaries";
mainProgram = "chrpath";
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://codeberg.org/pere/chrpath";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.bjornfor ];
};
})