about summary refs log tree commit diff
path: root/pkgs/development/libraries/sqlite/default.nix
blob: 26f9b63157379cebfee85e7a28dbbe5e7c95605b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "sqlite-2.8.16";

  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/sqlite-2.8.16.tar.gz;
    md5 = "9c79b461ff30240a6f9d70dd67f8faea";
  };
}