2004-09-25 21:32:23 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2010-01-19 18:15:47 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "patchelf-0.5";
|
2008-05-29 16:19:34 +02: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";
|
|
|
|
sha256 = "24b9a850af45e1a277e234b9eb090b52305a2e1c6b02addeb3ae98b4b49d37ce";
|
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";
|
2004-09-25 21:32:23 +02:00
|
|
|
};
|
|
|
|
}
|