Skip to content

Commit

Permalink
overlays: fix libiodbc
Browse files Browse the repository at this point in the history
  • Loading branch information
Svenum committed Feb 13, 2025
1 parent a22f692 commit 5897183
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.05";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";

nur = {
url = "github:nix-community/NUR";
Expand Down
9 changes: 9 additions & 0 deletions overlays/libiodbc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ ... }:

final: prev: {
libiodbc = prev.libiodbc.overrideAttrs (old: {
configureFlags = [
"--disable-libodbc"
];
});
}

0 comments on commit 5897183

Please sign in to comment.