2014-07-19 02:12:50 +02:00
|
|
|
{ stdenv, fetchurl, libelf }:
|
|
|
|
|
|
|
|
let
|
|
|
|
version = "20130503";
|
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "prelink";
|
|
|
|
inherit version;
|
2014-07-19 02:12:50 +02:00
|
|
|
|
2016-08-25 10:44:20 +02:00
|
|
|
buildInputs = [
|
|
|
|
libelf stdenv.cc.libc (stdenv.lib.getOutput "static" stdenv.cc.libc)
|
|
|
|
];
|
2014-07-19 02:12:50 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://people.redhat.com/jakub/prelink/prelink-${version}.tar.bz2";
|
2014-07-19 02:12:50 +02:00
|
|
|
sha256 = "1w20f6ilqrz8ca51qhrn1n13h7q1r34k09g33d6l2vwvbrhcffb3";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://people.redhat.com/jakub/prelink/";
|
2014-07-19 02:12:50 +02:00
|
|
|
license = "GPL";
|
|
|
|
description = "ELF prelinking utility to speed up dynamic linking";
|
2017-09-13 13:48:10 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-07-19 02:12:50 +02:00
|
|
|
};
|
|
|
|
}
|