1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/development/libraries/pysqlite/default.nix

13 lines
326 B
Nix
Raw Normal View History

{stdenv, fetchurl, python, sqlite, substituter}:
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 substituter;
}