Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions flake.lock

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

58 changes: 58 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
futils.url = "github:numtide/flake-utils";
};

outputs = {
self,
nixpkgs,
futils,
} @ inputs: let
inherit (nixpkgs) lib;
inherit (futils.lib) eachDefaultSystem defaultSystems;

nixpkgsFor = lib.genAttrs defaultSystems (system:
import nixpkgs {
inherit system;
});
in
eachDefaultSystem (system: let
pkgs = nixpkgsFor.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
clang
cmake
docker-compose
gettext
git
glibc
gnumake
go
golangci-lint
krb5.dev
krb5.out
libclang
libev
libgcc
libtool
libunwind
libuv
libxml2
libxslt
lz4
nodejs_24
openssl
pkg-config
postgresql
postgresql.pg_config
python313
sccache
uv
xmlsec
zlib
];
};
});
}
Loading