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

stdenv.mkDerivation {
  name = "patchelf-0.4pre11957";
  
  src = fetchurl {
    url = http://nixos.org/releases/patchelf/patchelf-0.4pre11957-lngvn112/patchelf-0.4pre11957.tar.bz2;
    sha256 = "3e9a72f17cfddcc0fbb6e2433aea7147d54c5c986c8cb3fce0dd985936efa7f3";
  };

  meta = {
    homepage = http://nixos.org/patchelf.html;
    license = "GPL";
    description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
  };
}