about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/patchelf/unstable.nix
blob: 2443c2804435d4fee0421b515e6373f829c09d6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
  name = "patchelf-0.10-pre-20160920";

  src = fetchFromGitHub {
    owner = "NixOS";
    repo = "patchelf";
    rev = "327d80443672c397970738f9e216a7e86cbf3ad7";
    sha256 = "0nghzywda4jrj70gvn4dnrzasafgdp0basj04wfir1smvsi047zr";
  };

  setupHook = [ ./setup-hook.sh ];

  buildInputs = [ autoreconfHook ];

  doCheck = true;

  meta = {
    homepage = https://nixos.org/patchelf.html;
    license = "GPL";
    description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
    maintainers = [ stdenv.lib.maintainers.eelco ];
    platforms = stdenv.lib.platforms.all;
  };
}