2011-11-08 01:30:02 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2004-09-25 20:32:23 +01:00
|
|
|
|
2010-01-19 17:15:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-01-07 16:44:03 +00:00
|
|
|
name = "patchelf-0.7";
|
2011-11-08 01:30:02 +00:00
|
|
|
|
2004-09-25 20:32:23 +01:00
|
|
|
src = fetchurl {
|
2010-01-19 17:15:47 +00:00
|
|
|
url = "http://nixos.org/releases/patchelf/${name}/${name}.tar.bz2";
|
2014-01-07 16:44:03 +00:00
|
|
|
sha256 = "61b96f455e6ccd1c1d7d159df7199c85ff6e8f9622d795a5420e418acfb8b808";
|
2007-05-24 17:00:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2008-06-03 15:29:14 +01:00
|
|
|
homepage = http://nixos.org/patchelf.html;
|
2007-05-24 17:00:05 +01:00
|
|
|
license = "GPL";
|
|
|
|
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
|
2004-09-25 20:32:23 +01:00
|
|
|
};
|
|
|
|
}
|