about summary refs log tree commit diff
path: root/pkgs/development/libraries/xml-security-c/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/xml-security-c/default.nix')
-rw-r--r--pkgs/development/libraries/xml-security-c/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/development/libraries/xml-security-c/default.nix b/pkgs/development/libraries/xml-security-c/default.nix
deleted file mode 100644
index d76b2031aa3f..000000000000
--- a/pkgs/development/libraries/xml-security-c/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{
-  lib,
-  stdenv,
-  fetchgit,
-  autoreconfHook,
-  pkg-config,
-  xalanc,
-  xercesc,
-  openssl,
-  darwin,
-}:
-
-let
-  inherit (darwin.apple_sdk.frameworks) CoreFoundation CoreServices SystemConfiguration;
-in
-stdenv.mkDerivation (finalAttrs: {
-  pname = "xml-security-c";
-  version = "2.0.4";
-
-  src = fetchgit {
-    url = "https://git.shibboleth.net/git/cpp-xml-security";
-    rev = finalAttrs.version;
-    hash = "sha256-60A6LqUUGmoZMmIvhuZWjrZl6utp7WLhPe738oNd/AA=";
-  };
-
-  configureFlags = [
-    "--with-openssl"
-    "--with-xerces"
-    "--with-xalan"
-  ];
-
-  nativeBuildInputs = [
-    autoreconfHook
-    pkg-config
-  ];
-
-  buildInputs =
-    [
-      xalanc
-      xercesc
-      openssl
-    ]
-    ++ lib.optionals stdenv.isDarwin [
-      CoreFoundation
-      CoreServices
-      SystemConfiguration
-    ];
-
-  meta = {
-    homepage = "https://shibboleth.atlassian.net/wiki/spaces/DEV/pages/3726671873/Santuario";
-    description = "C++ Implementation of W3C security standards for XML";
-    license = lib.licenses.asl20;
-    platforms = lib.platforms.unix;
-    maintainers = [ lib.maintainers.jagajaga ];
-  };
-})