This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-packages/flake.nix

104 lines
3.5 KiB
Nix
Raw Normal View History

2022-06-11 13:32:09 +01:00
{
description = "Lottes nix packages";
inputs = {
2022-07-08 11:46:38 +01:00
nixpkgs.url = "github:NixOS/nixpkgs";
2022-07-08 12:00:58 +01:00
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-22.05";
2022-06-11 13:32:09 +01:00
flake-utils.url = "github:numtide/flake-utils";
2022-06-11 13:55:50 +01:00
# Source files for packages
clean-s3-cache.url = "git+https://gist.github.com/DarkKirb/533e9e8b9b6dd1badf9b103b4285dc4e";
clean-s3-cache.flake = false;
2022-06-11 15:04:50 +01:00
miifox-net.url = "git+https://git.chir.rs/CarolineHusky/MiiFox.net";
miifox-net.flake = false;
2022-06-12 09:41:21 +01:00
mastodon.url = "github:glitch-soc/mastodon";
mastodon.flake = false;
2022-06-12 14:06:20 +01:00
nixpkgs-go116.url = "github:NixOS/nixpkgs/dab5668f6be905a7f0de39a7d67fd8f78a13d600";
matrix-media-repo.url = "github:turt2live/matrix-media-repo";
matrix-media-repo.flake = false;
2022-06-12 15:28:17 +01:00
mautrix-whatsapp.url = "github:mautrix/whatsapp";
mautrix-whatsapp.flake = false;
2022-07-20 09:36:55 +01:00
mautrix-discord.url = "github:mautrix/discord";
mautrix-discord.flake = false;
2022-06-12 14:06:20 +01:00
gomod2nix.url = "github:tweag/gomod2nix";
2022-06-14 05:55:29 +01:00
kreative-open-relay.url = "github:kreativekorp/open-relay";
kreative-open-relay.flake = false;
2022-06-14 15:11:01 +01:00
nasin-nanpa.url = "github:ETBCOR/nasin-nanpa";
nasin-nanpa.flake = false;
2022-06-28 09:51:16 +01:00
plover.url = "github:benoit-pierre/plover/wayland-sway";
2022-06-16 17:16:05 +01:00
plover.flake = false;
2022-06-19 13:31:22 +01:00
cargo2nix.url = "github:cargo2nix/cargo2nix";
2022-06-23 09:30:56 +01:00
drone-runner-docker.url = "github:drone-runners/drone-runner-docker";
drone-runner-docker.flake = false;
2022-06-24 06:35:12 +01:00
copilot-lua.url = "github:zbirenbaum/copilot.lua";
copilot-lua.flake = false;
copilot-cmp.url = "github:zbirenbaum/copilot-cmp";
copilot-cmp.flake = false;
2022-07-03 16:32:22 +01:00
hydra.url = "github:mlabs-haskell/hydra/aciceri/ca-derivations";
hydra-patched.url = "git+https://git.chir.rs/darkkirb/hydra?ref=hack";
hydra-base.url = "git+https://git.chir.rs/darkkirb/hydra?ref=hack&rev=3fdc9e491dc7d33bc09ef4f33984f87c8f478aa2";
2022-07-06 14:36:21 +01:00
steno-dictionaries.url = "github:didoesdigital/steno-dictionaries";
steno-dictionaries.flake = false;
2022-06-11 13:32:09 +01:00
};
2022-06-13 05:53:33 +00:00
outputs = {
self,
nixpkgs,
flake-utils,
...
} @ inputs:
2022-06-18 08:56:50 +01:00
flake-utils.lib.eachDefaultSystem (
2022-06-13 05:53:33 +00:00
system: let
2022-07-03 10:58:04 +01:00
pkgs = import nixpkgs {
inherit system;
config.contentAddressedByDefault = true;
};
2022-06-13 05:53:33 +00:00
in rec {
2022-06-11 13:32:09 +01:00
formatter = pkgs.alejandra;
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
statix
];
};
2022-06-11 13:36:59 +01:00
2022-07-19 13:07:10 +01:00
packages = pkgs.lib.lists.foldl (a: b: a // b) {} (map (f: import f {inherit pkgs inputs;}) ([
2022-07-20 09:36:55 +01:00
./scripts/clean-s3-cache.nix
./web/old-homepage.nix
./web/miifox-net.nix
./mastodon
./matrix/matrix-media-repo
./matrix/mautrix-whatsapp
./matrix/mautrix-discord
./fonts/kreative.nix
./fonts/nasin-nanpa.nix
./plover
./plover/dicts.nix
./art
./ci/drone-runner-docker
./vim
./python/tarballs.nix
]
++ (
if system == "x86_64-linux"
then [./hydra]
else []
)
++ (
if system != "i686-linux"
then [./minecraft/paper.nix]
else []
)));
2022-06-11 13:36:59 +01:00
2022-06-18 08:56:50 +01:00
hydraJobs =
2022-07-19 13:07:10 +01:00
if pkgs.lib.strings.hasSuffix "-linux" system
2022-06-18 08:56:50 +01:00
then {
2022-07-03 10:58:04 +01:00
inherit packages devShells formatter;
2022-06-19 13:31:22 +01:00
inherit (inputs.cargo2nix.packages.${system}) cargo2nix;
2022-07-07 08:57:00 +01:00
gomod2nix = inputs.gomod2nix.packages.${system}.default;
2022-06-18 08:56:50 +01:00
}
else {};
2022-06-11 13:32:09 +01:00
}
);
}