libabigail: init at 1.6
Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
This commit is contained in:
parent
3adeca3775
commit
b877d845de
59
pkgs/development/libraries/libabigail/default.nix
Normal file
59
pkgs/development/libraries/libabigail/default.nix
Normal file
@ -0,0 +1,59 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, autoreconfHook
|
||||
, elfutils
|
||||
, libxml2
|
||||
, pkgconfig
|
||||
, strace
|
||||
, python3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libabigail";
|
||||
version = "1.6";
|
||||
|
||||
outputs = [ "bin" "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://mirrors.kernel.org/sourceware/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "04j07lhvwbp6qp8pdwbf7iqnr7kgpabmqylsw4invpmzwnyp6g6g";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkgconfig
|
||||
strace
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
elfutils
|
||||
libxml2
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
python3
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-bash-completion=yes"
|
||||
"--enable-cxx11=yes"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
preCheck = ''
|
||||
# runtestdiffpkg needs cache directory
|
||||
export XDG_CACHE_HOME="$TEMPDIR"
|
||||
patchShebangs tests/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "ABI Generic Analysis and Instrumentation Library";
|
||||
homepage = "https://sourceware.org/libabigail/";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ jtojnar ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -11724,6 +11724,8 @@ in
|
||||
|
||||
libaal = callPackage ../development/libraries/libaal { };
|
||||
|
||||
libabigail = callPackage ../development/libraries/libabigail { };
|
||||
|
||||
libaccounts-glib = callPackage ../development/libraries/libaccounts-glib { };
|
||||
|
||||
libacr38u = callPackage ../tools/security/libacr38u { };
|
||||
|
Loading…
Reference in New Issue
Block a user