* Fix autostart test to work in nix sandbox * Break out a default.nix to make consuming this package easier The flake is great for local development, but creates overhead and duplication when pulling it in on another machine. With the default.nix, the flake continues to work as before, but consumers can callPackage directly with their own nixpkgs. * Break out a default.nix to make consuming this package easier The flake is great for local development, but creates overhead and duplication when pulling it in on another machine. With the default.nix, the flake continues to work as before, but consumers can callPackage directly with their own nixpkgs.
22 lines
542 B
Nix
22 lines
542 B
Nix
{ pkgs, self }:
|
|
pkgs.buildGoModule {
|
|
pname = "beads";
|
|
version = "0.9.9";
|
|
|
|
src = self;
|
|
|
|
# Point to the main Go package
|
|
subPackages = [ "cmd/bd" ];
|
|
|
|
# Go module dependencies hash (computed via nix build)
|
|
vendorHash = "sha256-9xtp1ZG7aYXatz02PDTmSRXwBDaW0kM7AMQa1RUau4U=";
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "beads (bd) - An issue tracker designed for AI-supervised coding workflows";
|
|
homepage = "https://github.com/steveyegge/beads";
|
|
license = licenses.mit;
|
|
mainProgram = "bd";
|
|
maintainers = [ ];
|
|
};
|
|
}
|