summary refs log tree commit diff
path: root/pkgs/development
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/development
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/development')
-rw-r--r--pkgs/development/libraries/ntdb/default.nix51
1 files changed, 0 insertions, 51 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;
-  };
-}