907bb1aac6
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with SQLite. * qemu-image: fix the URL. * gdmap: make it build again (requires an older GTK+). * rlwrap: updated to 0.37. * smbfs-fuse -> fusesmb to match the upstream name. * x11vnc: updated to 0.9.10. * clearlyU: fix the URL. * Various packages: follow the coding conventions. svn path=/nixpkgs/trunk/; revision=22814
17 lines
333 B
Nix
17 lines
333 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdbi-0.8.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libdbi/${name}.tar.gz";
|
|
sha256 = "1qx5d5ikx65k73ir9rf557ri6j99ihsnjqqyznqsf7dvprb1ir3j";
|
|
};
|
|
|
|
configureFlags = "--disable-docs";
|
|
|
|
meta = {
|
|
description = "DB independent interface to DB";
|
|
};
|
|
}
|