2aac41a8db
reason why this shouldn't work, but it breaks NixOS evaluation on x86_64-linux with weird segfaults and assertion failures, probably due to a bug in the evaluator or the ATerm library. svn path=/nixpkgs/trunk/; revision=20953
18 lines
438 B
Nix
18 lines
438 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk, useGTK ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libiodbc-3.52.7";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/downloads/iODBC/${name}.tar.gz";
|
|
sha256 = "d7002cc7e566785f1203f6096dcb49b0aad02a9d9946a8eca5d663ac1a85c0c7";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optionals useGTK [ gtk pkgconfig ];
|
|
|
|
meta = {
|
|
description = "iODBC driver manager";
|
|
homepage = http://www.iodbc.org;
|
|
};
|
|
}
|