nix-packages/default.nix

97 lines
2.4 KiB
Nix
Raw Normal View History

2022-09-25 13:06:44 +00:00
# This file describes your repository contents.
# It should return a set of nix derivations
# and optionally the special attributes `lib`, `modules` and `overlays`.
# It should NOT import <nixpkgs>. Instead, you should take pkgs as an argument.
# Having pkgs default to <nixpkgs> is fine though, and it lets you use short
# commands such as:
# nix-build -A mypackage
2023-01-16 09:02:58 +00:00
{pkgs ? import <nixpkgs> {}}: let
2022-09-25 13:06:44 +00:00
lib = import ./lib {inherit pkgs;}; # functions
flake = (lib.importFlake {inherit (pkgs) system;}).defaultNix;
2023-04-22 15:07:13 +00:00
pkgsWithOverlay = pkgs.appendOverlays [(import ./overlay.nix pkgs.system)];
2023-03-18 07:01:47 +00:00
in
{
2023-03-18 07:01:47 +00:00
# The `lib`, `modules`, and `overlay` names are special
inherit (flake) lib modules overlays;
2023-03-18 07:01:47 +00:00
}
2023-04-22 14:40:58 +00:00
// {
inherit
(pkgsWithOverlay)
akkoma
2023-08-05 15:25:06 +00:00
akkoma-fe
2023-04-22 14:40:58 +00:00
admin-fe
emoji-lotte
emoji-volpeon-blobfox
emoji-volpeon-blobfox-flip
emoji-volpeon-bunhd
emoji-volpeon-bunhd-flip
emoji-volpeon-drgn
emoji-volpeon-fox
emoji-volpeon-gphn
emoji-volpeon-raccoon
emoji-volpeon-vlpn
2023-07-01 13:58:12 +00:00
emoji-volpeon-neofox
2023-08-12 11:07:49 +00:00
emoji-volpeon-neocat
2023-04-22 14:40:58 +00:00
emoji-caro
lotte-art
alco-sans
constructium
fairfax
fairfax-hd
kreative-square
nasin-nanpa
matrix-media-repo
mautrix-discord
mautrix-whatsapp
mautrix-signal
mautrix-telegram
2023-04-22 15:07:13 +00:00
python-mautrix
2023-04-22 14:40:58 +00:00
python-tulir-telethon
papermc
python-plover-stroke
python-rtf-tokenize
plover
2023-04-22 15:07:13 +00:00
plover-plugins-manager
2023-04-22 14:40:58 +00:00
python-simplefuzzyset
2023-04-22 15:07:13 +00:00
plover-plugin-emoji
plover-plugin-tapey-tape
plover-plugin-yaml-dictionary
2023-04-22 14:40:58 +00:00
plover-plugin-machine-hid
plover-plugin-rkb1-hid
2023-04-22 15:07:13 +00:00
plover-dict-didoesdigital
2023-04-22 14:40:58 +00:00
miifox-net
old-homepage
2023-04-22 15:07:13 +00:00
python-instagram
2023-04-22 14:40:58 +00:00
element-web
mautrix-cleanup
woodpecker-agent
woodpecker-cli
woodpecker-frontend
woodpecker-server
hydra
hydra-unstable
2023-04-25 06:31:46 +00:00
wordpress-plugins
2023-04-27 09:28:50 +00:00
wordpress-themes
2023-05-09 16:42:05 +00:00
kubo
2023-07-06 16:13:52 +00:00
plover-plugin-python-dictionary
2023-07-09 15:40:19 +00:00
plover-plugin-stenotype-extended
2023-09-01 08:00:08 +00:00
asar-asm
2023-07-19 12:21:58 +00:00
bsnes-plus
2023-08-09 08:22:39 +00:00
sliding-sync
2023-04-22 14:40:58 +00:00
;
}
// (
if pkgs.system == "riscv64-linux"
then {
2023-06-26 06:22:29 +00:00
inherit (pkgsWithOverlay) vf2Kernel valgrind;
2023-04-22 14:40:58 +00:00
}
else {}
)
// (
if pkgs.system == "x86_64-linux"
then {
inherit (pkgsWithOverlay) linux-bcachefs bcachefs-tools;
}
else {}
)