dbsql/shell.nix

29 lines
363 B
Nix
Raw Permalink Normal View History

2023-10-19 18:45:46 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2023-10-21 17:06:35 +00:00
2023-10-19 18:45:46 +00:00
nativeBuildInputs = with pkgs.buildPackages; [
act
autoconf
ed
gcc
gdb
gettext
libtool
m4
2023-10-21 17:06:35 +00:00
pkg-config
2023-10-19 18:45:46 +00:00
perl
ripgrep
2024-03-11 15:39:12 +00:00
python3
2023-10-19 18:45:46 +00:00
];
buildInputs = with pkgs; [
2023-10-21 17:06:35 +00:00
# (enableDebuging db4)
db4
2023-10-19 18:45:46 +00:00
glibc.out
glibc.static
2023-10-21 17:06:35 +00:00
tcl-8_5
2023-10-19 18:45:46 +00:00
];
DOCKER_BUILDKIT = 1;
}