depot/packages/projects.nix

99 lines
2.5 KiB
Nix
Raw Normal View History

2022-05-23 10:58:42 +02:00
{ pkgs, inputs, system, ... }@args:
2022-03-13 23:13:53 +01:00
let
2022-05-23 10:58:42 +02:00
inherit (pkgs) lib;
2022-05-24 19:38:07 +02:00
inherit (inputs) unstable;
2022-05-26 21:34:14 +02:00
pins = import ./sources;
2022-03-13 23:13:53 +01:00
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);
});
2022-03-21 21:41:18 +01:00
mkShell = import lib/devshell.nix args;
2022-05-24 19:38:07 +02:00
2022-03-13 23:13:53 +01:00
in
{
2022-05-24 19:38:07 +02:00
packages = rec {
2022-04-01 16:24:21 +02:00
ghost = let
2022-04-02 18:59:20 +02:00
version = "4.41.3";
2022-04-01 16:24:21 +02:00
dream = dream2nix.makeFlakeOutputs {
source = pkgs.fetchzip {
url = "https://github.com/TryGhost/Ghost/releases/download/v${version}/Ghost-${version}.zip";
2022-04-02 18:59:20 +02:00
sha256 = "sha256-mqN43LSkd9MHoIHyGS1VsPvpqWqX4Bx5KHcp3KOHw5A=";
2022-04-01 16:24:21 +02:00
stripRoot = false;
};
2022-03-13 23:13:53 +01:00
};
2022-04-01 16:24:21 +02:00
inherit (dream.packages.${system}) ghost;
in
2022-05-23 10:58:42 +02:00
ghost;
2022-03-13 23:13:53 +01:00
2022-04-27 17:01:24 +02:00
uptime-kuma = let
dream = dream2nix.makeFlakeOutputs {
2022-05-26 21:34:14 +02:00
source = pins.uptime-kuma;
2022-04-27 17:01:24 +02:00
};
inherit (dream.packages.${system}) uptime-kuma;
in
2022-05-23 10:58:42 +02:00
uptime-kuma;
2022-04-27 17:01:24 +02:00
2022-03-13 23:13:53 +01:00
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
npins = let
inherit (inputs.self.packages.${system}) nix-super;
in pkgs.callPackage ./tools/npins {
nix = nix-super;
nix-prefetch-git = pkgs.nix-prefetch-git.override {
nix = nix-super;
};
};
2022-03-13 23:13:53 +01:00
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";
};
2022-05-29 18:12:43 +02:00
searxng = pkgs.callPackage ./web-apps/searxng { inherit pins; };
2022-05-24 19:38:07 +02:00
2022-03-13 23:13:53 +01:00
sips = pkgs.callPackage ./servers/sips { };
stevenblack-hosts = pkgs.callPackage ./data/stevenblack { inherit pins; };
2022-03-13 23:13:53 +01:00
};
2022-05-31 11:38:38 +02:00
checks = import ./tests { inherit inputs pkgs system; };
2022-03-13 23:13:53 +01:00
devShells = {
2022-05-26 20:55:52 +02:00
default = let
flakePkgs = inputs.self.packages.${system};
in mkShell {
tools = with flakePkgs; [
agenix
deploy-rs
2022-05-26 21:28:55 +02:00
npins
2022-05-26 20:55:52 +02:00
];
2022-05-26 21:28:55 +02:00
env.NPINS_DIRECTORY.eval = "$REPO_ROOT/packages/sources";
2022-05-26 20:55:52 +02:00
};
2022-03-13 23:42:29 +01:00
reflex-cache = let
inherit (inputs.self.packages.${system}) reflex-cache;
in mkShell {
packages = [
2022-03-13 23:42:29 +01:00
reflex-cache.dependencyEnv
];
tools = [
pkgs.poetry
];
2022-03-13 23:13:53 +01:00
env.PYTHON = reflex-cache.dependencyEnv.interpreter;
2022-03-13 23:42:29 +01:00
};
2022-03-13 23:13:53 +01:00
};
}