My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libgbinder/default.nix

45 lines
1.1 KiB

{ stdenv, lib, fetchFromGitHub, pkg-config, glib, libglibutil }:
stdenv.mkDerivation rec {
pname = "libgbinder";
version = "1.1.19";
src = fetchFromGitHub {
owner = "mer-hybris";
repo = pname;
rev = version;
sha256 = "sha256-HTmNoTGyFtOXRy7Y/ZnEgTa2GW6/+TeZxZo7c7ksNtc=";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [
pkg-config
];
buildInputs = [
glib
libglibutil
];
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 = with lib; {
description = "GLib-style interface to binder";
homepage = "https://github.com/mer-hybris/libgbinder";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ mcaju ];
};
}