lasuite_docs_proxy/flake.nix
2025-07-26 23:45:49 -04:00

43 lines
1.3 KiB
Nix

{
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
perSystem = {
lib,
pkgs,
system,
...
}: {
_module.args.pkgs = import inputs.nixpkgs {inherit system;};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [just dart watchexec];
};
packages.default = pkgs.buildDartApplication {
pname = "lasuite-docs-proxy";
version = "1.0.0";
src = ./.;
dartConfigHook = "packageRun build_runner build";
pubspecLock = lib.importJSON ./pubspec.lock.json;
preInstall = "set -x";
meta = {
homepage = "https://git.federated.nexus/Henry-Hiles/lasuite-docs-proxy";
description = "A proxy for lasuite docs s3 to work with caddy. For personal use mainly, probably won't work for you without patching (feel free to PR).";
mainProgram = "lasuite_docs_proxy";
license = lib.licenses.gpl3Plus;
maintainers = [lib.maintainers.quadradical];
};
};
};
flake.nixosModules.default = import ./module.nix inputs.self;
};
}