mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
9 lines
251 B
Nix
9 lines
251 B
Nix
|
self: super: {
|
||
|
unixODBCDrivers = super.unixODBCDrivers // {
|
||
|
msodbcsql18 =
|
||
|
if super.stdenv.targetPlatform.isDarwin
|
||
|
then super.callPackage ../msodbcsql18-darwin.nix { }
|
||
|
else super.callPackage ../msodbcsql18-linux.nix { };
|
||
|
};
|
||
|
}
|