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 {
|
2011-11-08 02:30:02 +01:00
|
|
|
name = "patchelf-0.6";
|
|
|
|
|
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";
|
2011-11-08 02:30:02 +01:00
|
|
|
sha256 = "fc7e7fa95f282fc37a591a802629e0e1ed07bc2a8bf162228d9a69dd76127c01";
|
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
|
|
|
};
|
|
|
|
}
|