2011-11-08 02:30:02 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2004-09-25 21:32:23 +02:00
|
|
|
|
2010-01-19 18:15:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-01-14 14:20:47 +01:00
|
|
|
name = "patchelf-0.8";
|
2011-11-08 02:30:02 +01:00
|
|
|
|
2004-09-25 21:32:23 +02:00
|
|
|
src = fetchurl {
|
2010-01-19 18:15:47 +01:00
|
|
|
url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
|
2014-01-14 14:20:47 +01:00
|
|
|
sha256 = "c99f84d124347340c36707089ec8f70530abd56e7827c54d506eb4cc097a17e7";
|
2007-05-24 18:00:05 +02:00
|
|
|
};
|
|
|
|
|
2014-06-27 11:15:28 +02:00
|
|
|
setupHook = [ ./setup-hook.sh ];
|
|
|
|
|
2007-05-24 18:00:05 +02:00
|
|
|
meta = {
|
2008-06-03 16:29:14 +02:00
|
|
|
homepage = http://nixos.org/patchelf.html;
|
2007-05-24 18:00:05 +02:00
|
|
|
license = "GPL";
|
|
|
|
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
|
2014-01-14 14:20:47 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2004-09-25 21:32:23 +02:00
|
|
|
};
|
|
|
|
}
|