mirror of
https://github.com/Cian-H/iform-invenio.git
synced 2026-08-16 16:32:50 +01:00
* Update devenv * Added uv for python package management * Clean up gunicorn config artifacts * Scaffolded site * Fixed configuration for 13.0 * Added iform config/theme * Added agent contracts to allow for more automation of work in repo * Added a local rebuild command to justfile for development * Fixed deployment persistence issues * Site polish and deployment streamlining * Updated justfile to include production deployment commands * Fixed deployment bugs * Fixed local test commands
41 lines
568 B
Nix
41 lines
568 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
packages = with pkgs; [
|
|
awscli2
|
|
cairo
|
|
cairomm
|
|
git
|
|
jq
|
|
nodejs
|
|
uv
|
|
libxcrypt
|
|
];
|
|
|
|
dotenv.enable = true;
|
|
|
|
languages = {
|
|
python = {
|
|
enable = true;
|
|
version = "3.12";
|
|
uv.enable = true;
|
|
};
|
|
javascript.npm = {
|
|
enable = true;
|
|
install.enable = true;
|
|
};
|
|
};
|
|
|
|
env = {
|
|
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath (with pkgs; [
|
|
cairo
|
|
cairomm
|
|
]);
|
|
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
|
};
|
|
}
|