Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 08884d6a0f97
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b45c5dc0aa6f
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 31, 2019

  1. libabigail: init at 1.6

    Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
    prusnak and jtojnar committed Oct 31, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b877d84 View commit details
  2. libabigail: init at 1.6 (#72383)

    libabigail: init at 1.6
    jtojnar authored Oct 31, 2019
    Copy the full SHA
    b45c5dc View commit details
Showing with 61 additions and 0 deletions.
  1. +59 −0 pkgs/development/libraries/libabigail/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
59 changes: 59 additions & 0 deletions pkgs/development/libraries/libabigail/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -11750,6 +11750,8 @@ in

libaal = callPackage ../development/libraries/libaal { };

libabigail = callPackage ../development/libraries/libabigail { };

libaccounts-glib = callPackage ../development/libraries/libaccounts-glib { };

libacr38u = callPackage ../tools/security/libacr38u { };