depot/packages/packages.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2022-01-14 18:29:21 +01:00
{ pkgs, inputs, ... }:
let
inherit (pkgs) system;
2022-03-13 00:23:41 +01:00
dream2nix = inputs.dream2nix.lib2.init {
2022-01-14 18:29:21 +01:00
systems = [ system ];
2022-03-13 00:23:41 +01:00
config = {
projectRoot = ./.;
overridesDirs = [ ./dream2nix-overrides ];
};
2022-01-14 18:29:21 +01:00
};
2022-02-26 00:47:32 +01:00
poetry2nix = pkgs.poetry2nix.overrideScope' (final: prev: {
defaultPoetryOverrides = prev.defaultPoetryOverrides.extend (import ./poetry2nix-overrides);
});
2022-01-14 18:29:21 +01:00
in
{
2022-03-13 01:05:23 +01:00
ghost = (let version = "4.39.0"; in dream2nix.makeFlakeOutputs {
2022-03-13 00:23:41 +01:00
source = pkgs.fetchzip {
url = "https://github.com/TryGhost/Ghost/releases/download/v${version}/Ghost-${version}.zip";
2022-03-13 01:05:23 +01:00
sha256 = "sha256-9XZCe1nd+jeinJHEAbZfLWAiEZK4QqdRxgE2byBkuAc=";
2022-03-13 00:23:41 +01:00
stripRoot = false;
2022-01-14 18:29:21 +01:00
};
2022-03-13 00:23:41 +01:00
}).packages.${system}.ghost;
2022-01-14 18:29:21 +01:00
2021-11-13 13:33:25 +02:00
hyprspace = pkgs.callPackage ./networking/hyprspace { iproute2mac = null; };
minio-console = pkgs.callPackage ./servers/minio-console { };
2021-06-05 22:59:06 +02:00
privatevoid-smart-card-ca-bundle = pkgs.callPackage ./data/privatevoid-smart-card-certificate-authority-bundle.nix { };
2022-02-26 00:48:16 +01:00
reflex-cache = poetry2nix.mkPoetryApplication {
projectDir = ./servers/reflex-cache;
meta.mainProgram = "reflex";
};
2022-02-01 22:45:59 +01:00
sips = pkgs.callPackage ./servers/sips { };
2021-06-05 22:59:06 +02:00
}