summary refs log tree commit diff
path: root/pkgs/development/tools/misc/patchelf/default.nix
blob: 27b1b73b67c1635d8943ca6af0b7e809495fd9ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "patchelf-0.3";
  src = fetchurl {
    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";
  };
}