forgejo -> woodpecker
This commit is contained in:
parent
ebffb583a3
commit
e2ed1ccd08
4 changed files with 47 additions and 32 deletions
13
flake.nix
13
flake.nix
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue