nixpkgs/pkgs/development/libraries/pysqlite/default.nix
Eelco Dolstra 8f4d8573c0 * Fix a bunch of URLs.
svn path=/nixpkgs/trunk/; revision=9292
2007-09-11 10:15:07 +00:00

13 lines
308 B
Nix

{stdenv, fetchurl, python, sqlite}:
stdenv.mkDerivation {
name = "pysqlite-2.2.2";
src = fetchurl {
url = http://initd.org/pub/software/pysqlite/releases/2.2/2.2.2/pysqlite-2.2.2.tar.gz;
md5 = "3260547d3f11c85613b2de8ed529a4fc";
};
builder = ./builder.sh;
inherit stdenv python sqlite;
}