forgejo -> woodpecker

This commit is contained in:
Adam Stephens 2024-05-14 16:14:22 -04:00
parent ebffb583a3
commit e2ed1ccd08
No known key found for this signature in database
4 changed files with 47 additions and 32 deletions

View file

@ -20,9 +20,16 @@
perSystem =
{ pkgs, ... }:
{
devShells = {
default = pkgs.mkShellNoCC { packages = [ pkgs.npins ]; };
ci = pkgs.mkShellNoCC { packages = [ pkgs.cachix ]; };
devShells = rec {
default = pkgs.mkShellNoCC { packages = [ pkgs.npins ] ++ ci.nativeBuildInputs; };
ci = pkgs.mkShellNoCC {
packages = [
pkgs.cachix
pkgs.jq
pkgs.just
];
};
};
packages = {