2004-09-25 12:32:23 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2010-01-19 09:15:47 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "patchelf-0.5";
|
2008-05-29 07:19:34 -07:00
|
|
|
|
2004-09-25 12:32:23 -07:00
|
|
|
src = fetchurl {
|
2010-01-19 09:15:47 -08:00
|
|
|
url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
|
|
|
|
sha256 = "24b9a850af45e1a277e234b9eb090b52305a2e1c6b02addeb3ae98b4b49d37ce";
|
2007-05-24 09:00:05 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2008-06-03 07:29:14 -07:00
|
|
|
homepage = http://nixos.org/patchelf.html;
|
2007-05-24 09:00:05 -07:00
|
|
|
license = "GPL";
|
|
|
|
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
|
2004-09-25 12:32:23 -07:00
|
|
|
};
|
|
|
|
}
|