nixpkgs/pkgs/development/tools/misc/prelink/default.nix

26 lines
608 B
Nix
Raw Normal View History

2014-07-19 00:12:50 +00:00
{ stdenv, fetchurl, libelf }:
let
version = "20130503";
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "prelink";
inherit version;
2014-07-19 00:12:50 +00:00
buildInputs = [
libelf stdenv.cc.libc (stdenv.lib.getOutput "static" stdenv.cc.libc)
];
2014-07-19 00:12:50 +00:00
src = fetchurl {
url = "https://people.redhat.com/jakub/prelink/prelink-${version}.tar.bz2";
2014-07-19 00:12:50 +00:00
sha256 = "1w20f6ilqrz8ca51qhrn1n13h7q1r34k09g33d6l2vwvbrhcffb3";
};
meta = {
homepage = https://people.redhat.com/jakub/prelink/;
2014-07-19 00:12:50 +00:00
license = "GPL";
description = "ELF prelinking utility to speed up dynamic linking";
platforms = stdenv.lib.platforms.linux;
2014-07-19 00:12:50 +00:00
};
}