2004-09-25 21:32:23 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-05-24 18:00:05 +02:00
|
|
|
name = "patchelf-0.3";
|
2004-09-25 21:32:23 +02:00
|
|
|
src = fetchurl {
|
2007-05-24 18:00:05 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/nix/patchelf-0.3/patchelf-0.3.tar.bz2;
|
|
|
|
md5 = "20d77052ae559c60e6c5efb6ea95af9b";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://nix.cs.uu.nl/patchelf.html";
|
|
|
|
license = "GPL";
|
|
|
|
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
|
2004-09-25 21:32:23 +02:00
|
|
|
};
|
|
|
|
}
|