nixpkgs/pkgs/development/libraries/pysqlite/default.nix
Eelco Dolstra 138c0ae751 * Merge the new generic builder.
* Removed substitute, it's part of the generic builder now.
* stdenv-initial (Linux): use the real generic builder script.  This
  does require that sed is in the path of the builder of the initial
  stdenv.

svn path=/nixpkgs/trunk/; revision=7498
2006-12-27 18:14:57 +00:00

13 lines
310 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;
}