2022-10-31T00:57:56 libffi 3.4.3 -> 3.4.4 https://github.com/libffi/libffi/releases 2022-10-31T00:57:58 attrpath: libffi 2022-10-31T00:57:59 Checking auto update branch... 2022-10-31T00:57:59 No auto update branch exists 2022-10-31T00:57:59 Old version 3.4.3" not present in staging derivation file with contents: { lib, stdenv, fetchurl, fetchpatch , autoreconfHook # test suite depends on dejagnu which cannot be used during bootstrapping # dejagnu also requires tcl which can't be built statically at the moment , doCheck ? !(stdenv.hostPlatform.isStatic) , dejagnu , nix-update-script }: stdenv.mkDerivation rec { pname = "libffi"; version = "3.4.4"; src = fetchurl { url = "https://github.com/libffi/libffi/releases/download/v${version}/${pname}-${version}.tar.gz"; sha256 = "sha256-1mxWrSWags8qnfxAizK/XaUjcVALhHRff7i2RXEt9nY="; }; # Note: this package is used for bootstrapping fetchurl, and thus # cannot use fetchpatch! All mutable patches (generated by GitHub or # cgit) that are needed here should be included directly in Nixpkgs as # files. patches = [ ]; strictDeps = true; outputs = [ "out" "dev" "man" "info" ]; enableParallelBuilding = true; configurePlatforms = [ "build" "host" ]; configureFlags = [ "--with-gcc-arch=generic" # no detection of -march= or -mtune= "--enable-pax_emutramp" # Causes issues in downstream packages which misuse ffi_closure_alloc # Reenable once these issues are fixed and merged: # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6155 # https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283 "--disable-exec-static-tramp" ]; preCheck = '' # The tests use -O0 which is not compatible with -D_FORTIFY_SOURCE. NIX_HARDENING_ENABLE=''${NIX_HARDENING_ENABLE/fortify/} ''; dontStrip = stdenv.hostPlatform != stdenv.buildPlatform; # Don't run the native `strip' when cross-compiling. inherit doCheck; checkInputs = [ dejagnu ]; passthru = { updateScript = nix-update-script { attrPath = pname; }; }; meta = with lib; { description = "A foreign function call interface library"; longDescription = '' The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages. ''; homepage = "http://sourceware.org/libffi/"; license = licenses.mit; maintainers = with maintainers; [ matthewbauer ]; platforms = platforms.all; }; } 2022-10-31T21:13:45 libffi 3.4.3 -> 3.4.4 https://github.com/libffi/libffi/releases 2022-10-31T21:13:47 attrpath: libffi 2022-10-31T21:13:47 Checking auto update branch... 2022-10-31T21:13:47 No auto update branch exists 2022-10-31T21:13:48 Old version 3.4.3" not present in staging derivation file with contents: { lib, stdenv, fetchurl, fetchpatch , autoreconfHook # test suite depends on dejagnu which cannot be used during bootstrapping # dejagnu also requires tcl which can't be built statically at the moment , doCheck ? !(stdenv.hostPlatform.isStatic) , dejagnu , nix-update-script }: stdenv.mkDerivation rec { pname = "libffi"; version = "3.4.4"; src = fetchurl { url = "https://github.com/libffi/libffi/releases/download/v${version}/${pname}-${version}.tar.gz"; sha256 = "sha256-1mxWrSWags8qnfxAizK/XaUjcVALhHRff7i2RXEt9nY="; }; # Note: this package is used for bootstrapping fetchurl, and thus # cannot use fetchpatch! All mutable patches (generated by GitHub or # cgit) that are needed here should be included directly in Nixpkgs as # files. patches = [ ]; strictDeps = true; outputs = [ "out" "dev" "man" "info" ]; enableParallelBuilding = true; configurePlatforms = [ "build" "host" ]; configureFlags = [ "--with-gcc-arch=generic" # no detection of -march= or -mtune= "--enable-pax_emutramp" # Causes issues in downstream packages which misuse ffi_closure_alloc # Reenable once these issues are fixed and merged: # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6155 # https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/283 "--disable-exec-static-tramp" ]; preCheck = '' # The tests use -O0 which is not compatible with -D_FORTIFY_SOURCE. NIX_HARDENING_ENABLE=''${NIX_HARDENING_ENABLE/fortify/} ''; dontStrip = stdenv.hostPlatform != stdenv.buildPlatform; # Don't run the native `strip' when cross-compiling. inherit doCheck; checkInputs = [ dejagnu ]; passthru = { updateScript = nix-update-script { attrPath = pname; }; }; meta = with lib; { description = "A foreign function call interface library"; longDescription = '' The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. FFI stands for Foreign Function Interface. A foreign function interface is the popular name for the interface that allows code written in one language to call code written in another language. The libffi library really only provides the lowest, machine dependent layer of a fully featured foreign function interface. A layer must exist above libffi that handles type conversions for values passed between the two languages. ''; homepage = "http://sourceware.org/libffi/"; license = licenses.mit; maintainers = with maintainers; [ matthewbauer ]; platforms = platforms.all; }; }