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