Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
glib,
|
|
libglibutil,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgbinder";
|
|
version = "1.1.43";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mer-hybris";
|
|
repo = "libgbinder";
|
|
rev = version;
|
|
sha256 = "sha256-a4lQzWOVdlXQeoJzvNaELiVXLvXsx4reigKrhsrcafM=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libglibutil
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix pkg-config and ranlib names for cross-compilation
|
|
substituteInPlace Makefile \
|
|
--replace "pkg-config" "$PKG_CONFIG" \
|
|
--replace "ranlib" "$RANLIB"
|
|
'';
|
|
|
|
makeFlags = [
|
|
"LIBDIR=$(out)/lib"
|
|
"INSTALL_INCLUDE_DIR=$(dev)/include/gbinder"
|
|
"INSTALL_PKGCONFIG_DIR=$(dev)/lib/pkgconfig"
|
|
];
|
|
|
|
installTargets = [
|
|
"install"
|
|
"install-dev"
|
|
];
|
|
|
|
postInstall = ''
|
|
sed -i -e "s@includedir=/usr@includedir=$dev@g" $dev/lib/pkgconfig/$pname.pc
|
|
sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags libglibutil) @g" $dev/lib/pkgconfig/$pname.pc
|
|
'';
|
|
|
|
meta = {
|
|
description = "GLib-style interface to binder";
|
|
homepage = "https://github.com/mer-hybris/libgbinder";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ ];
|
|
};
|
|
}
|