depot/third_party/nixpkgs/pkgs/development/tools/misc/prelink/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

46 lines
931 B
Nix

{ stdenv
, lib
, fetchgit
, autoreconfHook
, libelf
, libiberty
}:
stdenv.mkDerivation rec {
pname = "prelink";
version = "unstable-2019-06-24";
src = fetchgit {
url = "https://git.yoctoproject.org/git/prelink-cross";
branchName = "cross_prelink";
rev = "f9975537dbfd9ade0fc813bd5cf5fcbe41753a37";
sha256 = "sha256-O9/oZooLRyUBBZX3SFcB6LFMmi2vQqkUlqtZnrq5oZc=";
};
strictDeps = true;
configurePlatforms = [ "build" "host" ];
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
stdenv.cc.libc
libelf
libiberty
];
# most tests fail
doCheck = false;
enableParallelBuilding = true;
meta = with lib;{
description = "ELF prelinking utility to speed up dynamic linking";
homepage = "https://wiki.yoctoproject.org/wiki/Cross-Prelink";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ artturin ];
};
}