01bad09eed
This is not the final layout yet, but makes it so that my top-level attribute set is no longer overlaid into nixpkgs itself. This is useful for other people who are importing my monorepo.
10 lines
199 B
Nix
10 lines
199 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.third_party.nixpkgs.buildGoPackage {
|
|
name = "blog_cli";
|
|
goPackagePath = "github.com/tazjin/personal/blog_cli";
|
|
src = ./.;
|
|
goDeps = ./deps.nix;
|
|
|
|
meta.enableCI = true;
|
|
}
|