nixpkgs/pkgs/by-name/vo/voms/package.nix
2024-07-07 04:23:30 +08:00

96 lines
2.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
# Native build inputs
autoreconfHook,
bison,
flex,
pkg-config,
# Build inputs
expat,
gsoap,
openssl,
zlib,
# Configuration overridable with .override
# If not null, the builder will
# create a new output "etc", move "$out/etc" to "$etc/etc"
# and symlink "$out/etc" to externalEtc.
externalEtc ? "/etc",
}:
stdenv.mkDerivation (finalAttrs: {
pname = "voms";
version = "2.1.0";
src = fetchFromGitHub {
owner = "italiangrid";
repo = "voms";
rev = "v${finalAttrs.version}";
hash = "sha256-Xz9+NYaSZsVuoIbyuejVWmwEmsPmMVtBAD94/SXP8ag=";
};
passthru = {
inherit externalEtc;
};
nativeBuildInputs = [
autoreconfHook
bison
flex
pkg-config
];
buildInputs = [
expat
gsoap
openssl
zlib
];
outputs =
[
"bin"
"out"
"dev"
"man"
]
# `etc` output for default configurations that can optionally be
# installed to /etc (system-wide) or profile-path>/etc.
++ lib.optional (externalEtc != null) "etc";
preAutoreconf = ''
mkdir -p aux src/autogen
'';
postAutoreconf = ''
# FHS patching
substituteInPlace configure \
--replace "/usr/bin/soapcpp2" "${gsoap}/bin/soapcpp2"
# Tell gcc about the location of zlib
# See https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=voms
export GSOAP_SSL_PP_CFLAGS="$(pkg-config --cflags gsoapssl++ zlib)"
export GSOAP_SSL_PP_LIBS="$(pkg-config --libs gsoapssl++ zlib)"
'';
configureFlags = [
"--with-gsoap-wsdl2h=${gsoap}/bin/wsdl2h"
"--sysconfdir=${placeholder "out"}/etc"
];
postFixup = lib.optionalString (externalEtc != null) ''
moveToOutput etc "$etc"
ln -s ${lib.escapeShellArg externalEtc} "$out/etc"
'';
meta = with lib; {
description = "C/C++ VOMS server, client and APIs v2.x";
homepage = "https://italiangrid.github.io/voms/";
changelog = "https://github.com/italiangrid/voms/blob/master/ChangeLog";
license = licenses.asl20;
platforms = platforms.linux; # gsoap is currently Linux-only in Nixpkgs
maintainers = with maintainers; [ ShamrockLee ];
};
})