* Added unixODBC.

svn path=/nixpkgs/trunk/; revision=5041
This commit is contained in:
Eelco Dolstra 2006-03-15 12:43:40 +00:00
parent 439e93640e
commit e745e86d52
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "unixODBC-2.2.11";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/unixodbc/unixODBC-2.2.11.tar.gz;
md5 = "9ae806396844e38244cf65ad26ba0f23";
};
configureFlags = "--disable-gui";
}

View file

@ -1248,6 +1248,10 @@ rec {
inherit fetchurl stdenv alsaLib autoconf automake libtool;
};
unixODBC = import ../development/libraries/unixODBC {
inherit fetchurl stdenv;
};
### DEVELOPMENT / LIBRARIES / JAVA
saxon = (import ../development/libraries/java/saxon) {