My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/misc/prelink/default.nix

22 lines
579 B

{ lib, stdenv, fetchurl, libelf }:
stdenv.mkDerivation rec {
pname = "prelink";
version = "20130503";
buildInputs = [
libelf stdenv.cc.libc (lib.getOutput "static" stdenv.cc.libc)
];
src = fetchurl {
url = "https://people.redhat.com/jakub/prelink/prelink-${version}.tar.bz2";
sha256 = "1w20f6ilqrz8ca51qhrn1n13h7q1r34k09g33d6l2vwvbrhcffb3";
};
meta = {
homepage = "https://people.redhat.com/jakub/prelink/";
license = "GPL";
description = "ELF prelinking utility to speed up dynamic linking";
platforms = lib.platforms.linux;
};
}