54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ pkgs, inputs, ... }@args:
|
|
let
|
|
inherit (pkgs) system;
|
|
dream2nix = inputs.dream2nix.lib2.init {
|
|
systems = [ system ];
|
|
config = {
|
|
projectRoot = ./.;
|
|
overridesDirs = [ ./dream2nix-overrides ];
|
|
};
|
|
};
|
|
poetry2nix = pkgs.poetry2nix.overrideScope' (final: prev: {
|
|
defaultPoetryOverrides = prev.defaultPoetryOverrides.extend (import ./poetry2nix-overrides);
|
|
});
|
|
|
|
mkShell = import lib/devshell.nix args;
|
|
in
|
|
{
|
|
packages = {
|
|
ghost = (let version = "4.39.0"; in dream2nix.makeFlakeOutputs {
|
|
source = pkgs.fetchzip {
|
|
url = "https://github.com/TryGhost/Ghost/releases/download/v${version}/Ghost-${version}.zip";
|
|
sha256 = "sha256-9XZCe1nd+jeinJHEAbZfLWAiEZK4QqdRxgE2byBkuAc=";
|
|
stripRoot = false;
|
|
};
|
|
}).packages.${system}.ghost;
|
|
|
|
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
|
|
|
|
minio-console = pkgs.callPackage ./servers/minio-console { };
|
|
|
|
privatevoid-smart-card-ca-bundle = pkgs.callPackage ./data/privatevoid-smart-card-certificate-authority-bundle.nix { };
|
|
|
|
reflex-cache = poetry2nix.mkPoetryApplication {
|
|
projectDir = ./servers/reflex-cache;
|
|
meta.mainProgram = "reflex";
|
|
};
|
|
|
|
sips = pkgs.callPackage ./servers/sips { };
|
|
};
|
|
|
|
devShells = {
|
|
reflex-cache = let
|
|
inherit (inputs.self.packages.${system}) reflex-cache;
|
|
in mkShell {
|
|
packages = [
|
|
reflex-cache.dependencyEnv
|
|
];
|
|
|
|
commands.poetry.package = pkgs.poetry;
|
|
|
|
env.PYTHON = reflex-cache.dependencyEnv.interpreter;
|
|
};
|
|
};
|
|
}
|