testdata/flake.nix

78 lines
2.2 KiB
Nix
Raw Normal View History

2024-04-10 16:26:38 +00:00
{
2024-07-05 18:09:52 +00:00
description = "A webserver to create files for tetsing purposes";
2024-04-10 16:26:38 +00:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
poetry2nix-lib = {
url = "github:nix-community/poetry2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-11 19:11:05 +00:00
microvm = {
url = "github:astro/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-10 16:26:38 +00:00
};
2024-04-11 19:11:05 +00:00
outputs = {self, ...} @ inputs: let
2024-04-10 16:26:38 +00:00
supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
2024-04-11 19:11:05 +00:00
forAllSystems = inputs.nixpkgs.lib.genAttrs supportedSystems;
pkgs = forAllSystems (system: inputs.nixpkgs.legacyPackages.${system});
poetry2nix = forAllSystems (system: inputs.poetry2nix-lib.lib.mkPoetry2Nix {pkgs = pkgs.${system};});
2024-04-10 16:26:38 +00:00
in {
# `nix build`
2024-08-04 17:56:53 +00:00
packages = forAllSystems (system: let
mkPackage = {debug ? false}:
poetry2nix.${system}.mkPoetryApplication {
projectDir = self;
checkPhase =
if debug
then "pyright && pytest"
else "";
# doCheck = debug;
preferWheels = false;
nativeBuildInputs = with pkgs.${system}; [pyright];
};
in {
default = mkPackage {debug = false;};
debug = mkPackage {debug = true;};
2024-04-11 19:11:05 +00:00
vm = self.nixosConfigurations.vm.config.microvm.declaredRunner;
});
# `nix run`
apps = forAllSystems (system: {
default = {
program = "${self.packages.${system}.default}/bin/testdata";
type = "app";
};
2024-04-10 16:26:38 +00:00
});
# `nix fmt`
formatter = forAllSystems (system: pkgs.${system}.alejandra);
# `nix develop`
devShells = forAllSystems (system: {
# Shell for app dependencies.
#
# nix develop
#
# Use this shell for developing your app.
default = pkgs.${system}.mkShellNoCC {
inputsFrom = [self.packages.${system}.default];
2024-08-04 17:56:53 +00:00
packages = [self.packages.${system}.default];
};
# Shell for poetry.
#
# nix develop .#poetry
#
# Use this shell for changes to pyproject.toml and poetry.lock.
poetry = pkgs.${system}.mkShellNoCC {
packages = [pkgs.${system}.poetry];
};
2024-04-10 16:26:38 +00:00
});
2024-04-11 19:11:05 +00:00
# NixOS Module
nixosModules.default = import ./nix/module.nix inputs;
2024-04-10 16:26:38 +00:00
};
}