45d63bce17
Instead of specifying CI projects manually, this filters them to move the CI configuration into the derivations `meta` attributes.
10 lines
179 B
Nix
10 lines
179 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.buildGoPackage {
|
|
name = "blog_cli";
|
|
goPackagePath = "github.com/tazjin/personal/blog_cli";
|
|
src = ./.;
|
|
goDeps = ./deps.nix;
|
|
|
|
meta.enableCI = true;
|
|
}
|