summary refs log tree commit diff
path: root/pkgs/development/libraries/db4/default.nix
blob: cfe4a00efe6a95c3a4100f8512926299ded961b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "db4-4.2.52";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.sleepycat.com/update/snapshot/db-4.2.52.tar.gz;
    md5 = "cbc77517c9278cdb47613ce8cb55779f";
  };
  stdenv = stdenv;
}