Skip to content

Commit

Permalink
Add apps.{default,dissent}
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed Apr 4, 2024
1 parent 9b58282 commit 2bdedd8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,16 @@
version = self.rev or "unknown";
};

apps.staticcheck = {
type = "app";
program = "${pkgs.go-tools}/bin/staticcheck";
apps = rec {
default = dissent;
dissent = {
type = "app";
program = "${self.packages.${system}.default}/bin/dissent";
};
staticcheck = {
type = "app";
program = "${pkgs.go-tools}/bin/staticcheck";
};
};
}
)) //
Expand Down

0 comments on commit 2bdedd8

Please sign in to comment.