about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gss
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/gss')
-rw-r--r--nixpkgs/pkgs/development/libraries/gss/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/gss/default.nix b/nixpkgs/pkgs/development/libraries/gss/default.nix
new file mode 100644
index 000000000000..a9ee776d441c
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/gss/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl
+, withShishi ? !stdenv.isDarwin, shishi ? null
+}:
+
+assert withShishi -> shishi != null;
+
+stdenv.mkDerivation rec {
+  name = "gss-1.0.3";
+
+  src = fetchurl {
+    url = "mirror://gnu/gss/${name}.tar.gz";
+    sha256 = "1syyvh3k659xf1hdv9pilnnhbbhs6vfapayp4xgdcc8mfgf9v4gz";
+  };
+
+  buildInputs = stdenv.lib.optional withShishi shishi;
+
+  configureFlags = [
+    "--${if withShishi != null then "enable" else "disable"}-kereberos5"
+  ];
+
+  doCheck = true;
+
+  # Fixup .la files
+  postInstall = stdenv.lib.optionalString withShishi ''
+    sed -i 's,\(-lshishi\),-L${shishi}/lib \1,' $out/lib/libgss.la
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = https://www.gnu.org/software/gss/;
+    description = "Generic Security Service";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ bjg ];
+    platforms = platforms.all;
+  };
+}