summary refs log tree commit diff
path: root/pkgs/development/libraries/db/db-6.0.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-01-31 03:25:49 -0600
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-02-15 12:03:01 +0100
commit99f5d2edb423194540a2bf83365e7b78b1ffccc9 (patch)
tree6f0b7b5a75c6d02b9b8599ae5e1cf1b512af6d7f /pkgs/development/libraries/db/db-6.0.nix
parent68b3fd33a78ce51268f0eec31386a056d760ffc1 (diff)
downloadnixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar.gz
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar.bz2
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar.lz
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar.xz
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.tar.zst
nixlib-99f5d2edb423194540a2bf83365e7b78b1ffccc9.zip
db: Reorganize Berkeley Database Packaging
Currently, the berkeley databases resuses a lot of the same code for the
expressions of each version. This consolidates all of the build routines
similar to that of the linux kernel.

This patch also adds version 6 of BDB.
Diffstat (limited to 'pkgs/development/libraries/db/db-6.0.nix')
-rw-r--r--pkgs/development/libraries/db/db-6.0.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/libraries/db/db-6.0.nix b/pkgs/development/libraries/db/db-6.0.nix
new file mode 100644
index 000000000000..22e858a9d180
--- /dev/null
+++ b/pkgs/development/libraries/db/db-6.0.nix
@@ -0,0 +1,7 @@
+{ stdenv, fetchurl, ... } @ args:
+
+import ./generic.nix (args // rec {
+  version = "6.0.20";
+  sha256 = "00r2aaglq625y8r9xd5vw2y070plp88f1mb2gbq3kqsl7128lsl0";
+  license = stdenv.lib.licenses.agpl3;
+})