tvl-depot/tools/blog_cli/default.nix
Vincent Ambo 45d63bce17 feat(nix): Filter projects that should be built by CI
Instead of specifying CI projects manually, this filters them to move
the CI configuration into the derivations `meta` attributes.
2019-11-15 23:25:41 +00:00

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;
}