nix-packages/flake.nix

112 lines
3.8 KiB
Nix
Raw Normal View History

2022-06-11 12:32:09 +00:00
{
description = "Lottes nix packages";
inputs = {
2022-07-08 10:46:38 +00:00
nixpkgs.url = "github:NixOS/nixpkgs";
2022-07-08 11:00:58 +00:00
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-22.05";
2022-06-11 12:32:09 +00:00
flake-utils.url = "github:numtide/flake-utils";
2022-06-11 12:55:50 +00:00
# Source files for packages
clean-s3-cache.url = "git+https://gist.github.com/DarkKirb/533e9e8b9b6dd1badf9b103b4285dc4e";
clean-s3-cache.flake = false;
2022-06-11 14:04:50 +00:00
miifox-net.url = "git+https://git.chir.rs/CarolineHusky/MiiFox.net";
miifox-net.flake = false;
2022-09-09 09:30:32 +00:00
akkoma.url = "git+https://akkoma.dev/AkkomaGang/akkoma";
akkoma.flake = false;
2022-09-09 14:52:19 +00:00
akkoma-fe.url = "git+https://akkoma.dev/AkkomaGang/pleroma-fe";
akkoma-fe.flake = false;
akkoma-admin-fe.url = "git+https://akkoma.dev/AkkomaGang/admin-fe";
akkoma-admin-fe.flake = false;
2022-06-12 13:06:20 +00:00
matrix-media-repo.url = "github:turt2live/matrix-media-repo";
matrix-media-repo.flake = false;
2022-06-12 14:28:17 +00:00
mautrix-whatsapp.url = "github:mautrix/whatsapp";
mautrix-whatsapp.flake = false;
2022-07-20 08:36:55 +00:00
mautrix-discord.url = "github:mautrix/discord";
mautrix-discord.flake = false;
mautrix-telegram.url = "github:mautrix/telegram";
mautrix-telegram.flake = false;
mautrix-signal.url = "github:mautrix/signal";
mautrix-signal.flake = false;
gomod2nix.url = "git+https://git.chir.rs/darkkirb/gomod2nix";
2022-06-14 04:55:29 +00:00
kreative-open-relay.url = "github:kreativekorp/open-relay";
kreative-open-relay.flake = false;
2022-06-14 14:11:01 +00:00
nasin-nanpa.url = "github:ETBCOR/nasin-nanpa";
nasin-nanpa.flake = false;
2022-06-28 08:51:16 +00:00
plover.url = "github:benoit-pierre/plover/wayland-sway";
2022-06-16 16:16:05 +00:00
plover.flake = false;
2022-06-19 12:31:22 +00:00
cargo2nix.url = "github:cargo2nix/cargo2nix";
2022-06-23 08:30:56 +00:00
drone-runner-docker.url = "github:drone-runners/drone-runner-docker";
drone-runner-docker.flake = false;
2022-09-09 10:36:29 +00:00
hydra.url = "git+https://git.chir.rs/darkkirb/hydra?ref=hack";
2022-07-06 13:36:21 +00:00
steno-dictionaries.url = "github:didoesdigital/steno-dictionaries";
steno-dictionaries.flake = false;
2022-07-27 19:30:09 +00:00
plover-machine-hid.url = "git+https://git.chir.rs/darkkirb/plover-machine-hid";
plover-machine-hid.flake = false;
2022-08-09 15:15:15 +00:00
nvim-telescope-file-browser.url = "github:nvim-telescope/telescope-file-browser.nvim";
nvim-telescope-file-browser.flake = false;
2022-06-11 12:32:09 +00:00
};
2022-06-13 05:53:33 +00:00
outputs = {
self,
nixpkgs,
flake-utils,
...
} @ inputs:
2022-06-18 07:56:50 +00:00
flake-utils.lib.eachDefaultSystem (
2022-06-13 05:53:33 +00:00
system: let
2022-07-03 09:58:04 +00:00
pkgs = import nixpkgs {
inherit system;
};
2022-06-13 05:53:33 +00:00
in rec {
2022-06-11 12:32:09 +00:00
formatter = pkgs.alejandra;
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
statix
nix-prefetch
2022-06-11 12:32:09 +00:00
];
};
2022-06-11 12:36:59 +00:00
2022-07-19 12:07:10 +00:00
packages = pkgs.lib.lists.foldl (a: b: a // b) {} (map (f: import f {inherit pkgs inputs;}) ([
2022-07-20 08:36:55 +00:00
./scripts/clean-s3-cache.nix
./web/old-homepage.nix
./web/miifox-net.nix
2022-09-09 09:30:32 +00:00
./akkoma
2022-07-20 08:36:55 +00:00
./matrix/matrix-media-repo
./matrix/mautrix-whatsapp
./matrix/mautrix-discord
./matrix/mautrix-telegram.nix
./matrix/mautrix-signal.nix
2022-07-20 08:36:55 +00:00
./fonts/kreative.nix
./fonts/nasin-nanpa.nix
./plover
./plover/dicts.nix
./art
./ci/drone-runner-docker
./vim
./python/tarballs.nix
./python/packages.nix
2022-07-20 08:36:55 +00:00
]
++ (
if system == "x86_64-linux"
then [./hydra]
else []
)
++ (
if system != "i686-linux"
then [./minecraft/paper.nix]
else []
)));
2022-06-11 12:36:59 +00:00
2022-06-18 07:56:50 +00:00
hydraJobs =
2022-08-08 07:15:02 +00:00
if (system == "x86_64-linux") || (system == "aarch64-linux")
2022-06-18 07:56:50 +00:00
then {
2022-07-03 09:58:04 +00:00
inherit packages devShells formatter;
2022-06-19 12:31:22 +00:00
inherit (inputs.cargo2nix.packages.${system}) cargo2nix;
2022-07-07 07:57:00 +00:00
gomod2nix = inputs.gomod2nix.packages.${system}.default;
2022-06-18 07:56:50 +00:00
}
else {};
2022-06-11 12:32:09 +00:00
}
);
}