depot/packages/projects.nix

75 lines
2 KiB
Nix
Raw Normal View History

2022-05-23 11:58:42 +03:00
{ pkgs, inputs, system, ... }@args:
2022-03-14 00:13:53 +02:00
let
2022-05-23 11:58:42 +03:00
inherit (pkgs) lib;
2022-03-14 00:13:53 +02: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 22:41:18 +02:00
mkShell = import lib/devshell.nix args;
2022-03-14 00:13:53 +02:00
in
{
packages = {
2022-04-01 17:24:21 +03:00
ghost = let
2022-04-02 19:59:20 +03:00
version = "4.41.3";
2022-04-01 17:24:21 +03:00
dream = dream2nix.makeFlakeOutputs {
source = pkgs.fetchzip {
url = "https://github.com/TryGhost/Ghost/releases/download/v${version}/Ghost-${version}.zip";
2022-04-02 19:59:20 +03:00
sha256 = "sha256-mqN43LSkd9MHoIHyGS1VsPvpqWqX4Bx5KHcp3KOHw5A=";
2022-04-01 17:24:21 +03:00
stripRoot = false;
};
2022-03-14 00:13:53 +02:00
};
2022-04-01 17:24:21 +03:00
inherit (dream.packages.${system}) ghost;
in
2022-05-23 11:58:42 +03:00
ghost;
2022-03-14 00:13:53 +02:00
2022-04-27 18:01:24 +03:00
uptime-kuma = let
dream = dream2nix.makeFlakeOutputs {
source = builtins.fetchTree {
type = "github";
owner = "louislam";
repo = "uptime-kuma";
rev = "751924b3355ca44d24ceede1cfdd983383426f5f"; # 1.15.0
};
};
inherit (dream.packages.${system}) uptime-kuma;
in
2022-05-23 11:58:42 +03:00
uptime-kuma;
2022-04-27 18:01:24 +03:00
2022-03-14 00:13:53 +02:00
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 = {
2022-03-14 00:42:29 +02:00
reflex-cache = let
inherit (inputs.self.packages.${system}) reflex-cache;
in mkShell {
packages = [
2022-03-14 00:42:29 +02:00
reflex-cache.dependencyEnv
];
tools = [
pkgs.poetry
];
2022-03-14 00:13:53 +02:00
env.PYTHON = reflex-cache.dependencyEnv.interpreter;
2022-03-14 00:42:29 +02:00
};
2022-03-14 00:13:53 +02:00
};
}