aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: e7ed79165177beffa351adcbd1eb8a59fd517353 (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
{
  description = "Grammar-Aware Go Formatter";

  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 = "iku";
          src = pkgs.lib.cleanSource ./.;
          vendorHash = null;
          ldflags = [
            "-s"
            "-w"
            "-X main.version=${version}"
          ];

          meta = with pkgs.lib; {
            description = "Grammar-Aware Go Formatter";
            homepage = "https://github.com/Fuwn/iku";
            license = licenses.gpl3Only;
            platforms = platforms.unix;
          };
        };

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