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

stdenv.mkDerivation rec {
  name = "patchelf-0.6pre22275";
  
  src = fetchurl {
    url = "http://hydra.nixos.org/build/504657/download/2/patchelf-0.6pre22813.tar.bz2";
    sha256 = "1ml86wyl35ik3lixkcz2vlzvbcancj0dygwfh5ambjmazp2q19mh";
  };

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