summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2022-04-23 05:00:08 +0300
committerGitHub <noreply@github.com>2022-04-23 05:00:08 +0300
commitf4d6274f51e204d1ce75aabd792afe506ba8c825 (patch)
tree3c304cd58d7e9c02a191cf94a085e07343694f74 /pkgs
parentff1f418c1676d6c93554c4878db33423021ce39b (diff)
parent38aa92b3d2e84645416c78405118e805460e893b (diff)
downloadnixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar.gz
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar.bz2
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar.lz
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar.xz
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.tar.zst
nixpkgs-f4d6274f51e204d1ce75aabd792afe506ba8c825.zip
Merge pull request #169639 from armeenm/remove-ntdb
ntdb: remove
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/ntdb/default.nix51
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 1 insertions, 53 deletions
diff --git a/pkgs/development/libraries/ntdb/default.nix b/pkgs/development/libraries/ntdb/default.nix
deleted file mode 100644
index 021436516c2..00000000000
--- a/pkgs/development/libraries/ntdb/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ lib, stdenv
-, fetchurl
-, python2
-, python3
-, pkg-config
-, readline
-, gettext
-, libxslt
-, docbook-xsl-nons
-, docbook_xml_dtd_42
-, wafHook
-}:
-
-stdenv.mkDerivation rec {
-  pname = "ntdb";
-  version = "1.0";
-
-  src = fetchurl {
-    url = "mirror://samba/tdb/${pname}-${version}.tar.gz";
-    sha256 = "0jdzgrz5sr25k83yrw7wqb3r0yj1v04z4s3lhsmnr5z6n5ifhyl1";
-  };
-
-  nativeBuildInputs = [
-    pkg-config
-    gettext
-    libxslt
-    docbook-xsl-nons
-    docbook_xml_dtd_42
-    wafHook
-    python2 # For wafHook
-  ];
-
-  buildInputs = [
-    python3
-    readline # required to build python
-  ];
-
-  wafPath = "buildtools/bin/waf";
-
-  wafConfigureFlags = [
-    "--bundled-libraries=NONE"
-    "--builtin-libraries=replace,ccan"
-  ];
-
-  meta = with lib; {
-    description = "The not-so trivial database";
-    homepage = "https://tdb.samba.org/";
-    license = licenses.lgpl3Plus;
-    platforms = platforms.all;
-  };
-}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index e12f39e1d74..9279a9f6406 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -868,6 +868,7 @@ mapAliases ({
   noto-fonts-cjk = noto-fonts-cjk-sans; # Added 2021-12-16
   nottetris2 = throw "nottetris2 was removed because it is unmaintained by upstream and broken"; # Added 2022-01-15
   now-cli = throw "now-cli has been replaced with nodePackages.vercel"; # Added 2021-08-05
+  ntdb = throw "ntdb has been removed: abandoned by upstream"; # Added 2022-04-21
   nxproxy = throw "'nxproxy' has been renamed to/replaced by 'nx-libs'"; # Converted to throw 2022-02-22
 
   ### O ###
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1933285ebd7..67fcb64d459 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -20698,8 +20698,6 @@ with pkgs;
 
   tclx = callPackage ../development/libraries/tclx { };
 
-  ntdb = callPackage ../development/libraries/ntdb { };
-
   tdb = callPackage ../development/libraries/tdb {};
 
   tdlib = callPackage ../development/libraries/tdlib { };