2023-12-14 18:16:04 +02:00
|
|
|
{
|
|
|
|
nixConfig = {
|
|
|
|
trusted-substituters = "https://cache.nixos.org/";
|
|
|
|
trusted-public-keys = "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=";
|
|
|
|
extra-experimental-features = "nix-command flakes";
|
|
|
|
};
|
|
|
|
inputs = {
|
2024-01-07 23:07:09 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
2023-12-14 18:16:04 +02:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2024-01-15 10:52:46 +02:00
|
|
|
geoip2-tarball = {
|
|
|
|
url = "https://dl.jakstys.lt/_/2024.01.13.tar.zst";
|
2024-01-12 01:15:11 +02:00
|
|
|
flake = false;
|
|
|
|
};
|
2024-01-15 08:45:51 +02:00
|
|
|
|
|
|
|
flake-compat.url = "github:nix-community/flake-compat";
|
|
|
|
gitignore.url = "github:hercules-ci/gitignore.nix";
|
|
|
|
gitignore.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
|
|
|
pre-commit-hooks = {
|
|
|
|
url = "github:cachix/pre-commit-hooks.nix";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
nixpkgs-stable.follows = "nixpkgs";
|
|
|
|
flake-compat.follows = "flake-compat";
|
|
|
|
flake-utils.follows = "flake-utils";
|
|
|
|
gitignore.follows = "gitignore";
|
|
|
|
};
|
|
|
|
};
|
2023-12-14 18:16:04 +02:00
|
|
|
};
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
flake-utils,
|
2024-01-15 08:45:51 +02:00
|
|
|
pre-commit-hooks,
|
2024-01-15 10:52:46 +02:00
|
|
|
geoip2-tarball,
|
2024-01-15 08:45:51 +02:00
|
|
|
...
|
2024-01-15 10:57:11 +02:00
|
|
|
}:
|
2023-12-14 18:16:04 +02:00
|
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
2024-01-13 19:36:42 +02:00
|
|
|
pkgs = import nixpkgs {inherit system;};
|
2024-01-14 22:45:54 +02:00
|
|
|
|
2024-01-15 10:52:46 +02:00
|
|
|
geoip-mmdb = pkgs.callPackage ./pkgs/geoip-mmdb.nix {
|
|
|
|
inherit geoip2-tarball;
|
2024-01-14 20:04:41 +02:00
|
|
|
};
|
|
|
|
|
2024-01-15 07:50:38 +02:00
|
|
|
e11sync-static = pkgs.callPackage ./pkgs/e11sync-static.nix {};
|
2024-01-14 20:04:41 +02:00
|
|
|
|
2024-01-15 16:14:46 +02:00
|
|
|
e11sync-frontend = pkgs.callPackage ./pkgs/e11sync-frontend.nix {
|
2024-01-15 11:57:36 +02:00
|
|
|
inherit e11sync-static;
|
|
|
|
};
|
|
|
|
|
2024-01-15 16:17:16 +02:00
|
|
|
e11sync-backend = pkgs.callPackage ./pkgs/e11sync-backend.nix {
|
2024-01-15 16:14:46 +02:00
|
|
|
inherit geoip-mmdb;
|
|
|
|
uwsgi = pkgs.uwsgi.override {plugins = ["python3"];};
|
|
|
|
};
|
2024-01-14 22:45:54 +02:00
|
|
|
in {
|
2024-01-15 08:45:51 +02:00
|
|
|
packages = {
|
2024-01-15 10:52:46 +02:00
|
|
|
inherit geoip-mmdb;
|
2024-01-15 10:43:12 +02:00
|
|
|
inherit e11sync-static;
|
2024-01-15 16:14:46 +02:00
|
|
|
inherit e11sync-frontend;
|
2024-01-15 16:17:16 +02:00
|
|
|
inherit e11sync-backend;
|
2024-01-15 08:45:51 +02:00
|
|
|
};
|
2024-01-13 17:45:12 +02:00
|
|
|
|
2024-01-15 08:45:51 +02:00
|
|
|
checks = {
|
2024-01-15 16:17:16 +02:00
|
|
|
e11sync-unit = e11sync-backend.passthru.tests.unit;
|
2024-01-15 08:45:51 +02:00
|
|
|
pre-commit-check = pre-commit-hooks.lib.${system}.run {
|
|
|
|
src = ./.;
|
|
|
|
hooks = {
|
|
|
|
alejandra.enable = true;
|
|
|
|
deadnix.enable = true;
|
|
|
|
statix.enable = true;
|
|
|
|
};
|
|
|
|
};
|
2024-01-15 09:09:39 +02:00
|
|
|
format = pkgs.runCommand "check-format" {} ''
|
|
|
|
${pkgs.python3Packages.flake8}/bin/flake8 \
|
2024-01-15 10:01:47 +02:00
|
|
|
--exclude ${./.}/app/signup/migrations/ ${./.}/app
|
2024-01-15 09:09:39 +02:00
|
|
|
mkdir -p $out
|
|
|
|
'';
|
2024-01-15 08:45:51 +02:00
|
|
|
};
|
2024-01-13 18:58:43 +02:00
|
|
|
|
2024-01-15 10:38:08 +02:00
|
|
|
apps = {
|
2024-01-15 16:14:46 +02:00
|
|
|
e11sync-frontend = {
|
2024-01-15 11:57:36 +02:00
|
|
|
type = "app";
|
2024-01-15 16:14:46 +02:00
|
|
|
name = "e11sync-frontend";
|
2024-01-15 16:22:14 +02:00
|
|
|
program = toString (pkgs.writeShellScript "wrapper" ''
|
|
|
|
exec ${pkgs.caddy}/bin/caddy run --config ${pkgs.writeTextFile {
|
2024-01-15 11:57:36 +02:00
|
|
|
name = "Caddyfile";
|
|
|
|
text = ''
|
|
|
|
{
|
|
|
|
http_port 8001
|
|
|
|
auto_https off
|
|
|
|
debug
|
|
|
|
}
|
|
|
|
:8001
|
2024-01-15 16:14:46 +02:00
|
|
|
${builtins.readFile "${e11sync-frontend}"}
|
2024-01-15 11:57:36 +02:00
|
|
|
'';
|
2024-01-15 16:22:14 +02:00
|
|
|
}} --adapter caddyfile'');
|
2024-01-15 11:57:36 +02:00
|
|
|
};
|
2024-01-15 16:17:16 +02:00
|
|
|
e11sync-backend = {
|
|
|
|
type = "app";
|
|
|
|
name = "e11sync-backend";
|
|
|
|
program = toString (pkgs.writeShellScript "wrapper" ''
|
|
|
|
export E11SYNC_DATABASE_PATH=$PWD/db.sqlite3
|
|
|
|
exec ${e11sync-backend}/bin/e11sync-backend
|
|
|
|
'');
|
|
|
|
};
|
2024-01-13 17:00:02 +02:00
|
|
|
};
|
|
|
|
|
2024-01-12 12:53:02 +02:00
|
|
|
devShells.default = pkgs.mkShellNoCC {
|
2024-01-14 20:00:17 +02:00
|
|
|
packages = with pkgs; [
|
|
|
|
python3Packages.django_5
|
|
|
|
python3Packages.django-compressor
|
|
|
|
python3Packages.geoip2
|
|
|
|
libmaxminddb
|
|
|
|
dart-sass
|
2024-01-15 09:09:39 +02:00
|
|
|
|
|
|
|
python3Packages.django-debug-toolbar
|
|
|
|
python3Packages.flake8
|
2024-01-15 09:22:16 +02:00
|
|
|
|
2024-01-15 16:22:14 +02:00
|
|
|
# TODO: vim integration via EXITINT? See make check
|
2024-01-15 09:09:39 +02:00
|
|
|
python3Packages.autopep8
|
2024-01-14 20:00:17 +02:00
|
|
|
];
|
2024-01-15 10:52:46 +02:00
|
|
|
GEOIP_PATH = "${geoip-mmdb}";
|
2024-01-13 09:59:21 +02:00
|
|
|
E11SYNC_DEBUG = "1";
|
2024-01-13 19:30:41 +02:00
|
|
|
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
|
2024-01-15 10:57:11 +02:00
|
|
|
inherit (self.checks.${system}.pre-commit-check) shellHook;
|
2023-12-14 18:16:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
formatter = pkgs.alejandra;
|
|
|
|
});
|
|
|
|
}
|