mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
30 lines
836 B
Nix
30 lines
836 B
Nix
{ stdenv, fetchurl, kerberos }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgssglue-0.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/${name}.tar.gz";
|
|
sha256 = "0fh475kxzlabwz30wz3bf7i8kfqiqzhfahayx3jj79rba1sily9z";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed s:/etc/gssapi_mech.conf:$out/etc/gssapi_mech.conf: -i src/g_initialize.c
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/etc
|
|
cat <<EOF > $out/etc/gssapi_mech.conf
|
|
${kerberos}/lib/libgssapi_krb5.so mechglue_internal_krb5_init
|
|
EOF
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.citi.umich.edu/projects/nfsv4/linux/;
|
|
description = "Exports a gssapi interface which calls other random gssapi libraries";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ corngood ];
|
|
};
|
|
}
|