2004-09-25 21:32:23 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-06-04 13:27:35 +02:00
|
|
|
name = "patchelf-0.4";
|
2008-05-29 16:19:34 +02:00
|
|
|
|
2004-09-25 21:32:23 +02:00
|
|
|
src = fetchurl {
|
2008-06-04 13:27:35 +02:00
|
|
|
url = http://nixos.org/releases/patchelf/patchelf-0.4/patchelf-0.4.tar.bz2;
|
|
|
|
sha256 = "65c455b62fc52292e2488f05f46e7e38c46fdcf69c002750f5887145284c4f85";
|
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
|
|
|
};
|
|
|
|
}
|