mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Added unixODBC.
svn path=/nixpkgs/trunk/; revision=5041
This commit is contained in:
parent
439e93640e
commit
e745e86d52
2 changed files with 14 additions and 0 deletions
10
pkgs/development/libraries/unixODBC/default.nix
Normal file
10
pkgs/development/libraries/unixODBC/default.nix
Normal 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";
|
||||
}
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue