aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 9493eb03db00d948b67bda073f86cd211705fc25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  description = "A beautiful TUI for managing Claude Code sessions";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs =
    {
      self,
      nixpkgs,
      flake-utils,
      ...
    }:
    flake-utils.lib.eachDefaultSystem (
      system:
      let
        pkgs = import nixpkgs { inherit system; };
        version = self.shortRev or "dirty";
      in
      {
        packages.default = pkgs.buildGo125Module {
          inherit version;

          pname = "faustus";
          src = pkgs.lib.cleanSource ./.;
          vendorHash = "sha256-RNbS40G+8rtwlSJgYLN1puTCytGfXdagQTEs6sIXwnM=";
          ldflags = [
            "-s"
            "-w"
          ];

          meta = with pkgs.lib; {
            description = "A beautiful TUI for managing Claude Code sessions";
            homepage = "https://github.com/Fuwn/faustus";
            license = [
              licenses.mit
              licenses.asl20
            ];
            platforms = platforms.unix;
          };
        };

        devShells.default = pkgs.mkShell {
          buildInputs = [ pkgs.go_1_24 ];
        };
      }
    );
}