aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 5e2c1747ef86c4a6b66bafe9c88200c1ca4e2457 (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
{
  description = "A simple LDAP web interface for Bottin";

  inputs.nixpkgs.url = "github:nixos/nixpkgs/0244e143dc943bcf661fdaf581f01eb0f5000fcf";
  inputs.gomod2nix.url = "github:tweag/gomod2nix/40d32f82fc60d66402eb0972e6e368aeab3faf58";

  outputs = { self, nixpkgs, gomod2nix }:
  let
    pkgs = import nixpkgs {
      system = "x86_64-linux";
      overlays = [
        (self: super: {
          gomod = super.callPackage "${gomod2nix}/builder/" { };
        })
      ];
    };
    src = ./.;
    bottin = pkgs.gomod.buildGoApplication {
      pname = "guichet";
      version = "0.1.0";
      src = src;
      modules = ./gomod2nix.toml;

      CGO_ENABLED=0;

      ldflags = [
        "-X main.templatePath=${src + "/templates"}"
        "-X main.staticPath=${src + "/static"}"
      ];

      meta = with pkgs.lib; {
        description = "A simple LDAP web interface for Bottin";
        homepage = "https://git.deuxfleurs.fr/Deuxfleurs/guichet";
        license = licenses.gpl3Plus;
        platforms = platforms.linux;
      };
    };
  in
  {
    packages.x86_64-linux.bottin = bottin;
    packages.x86_64-linux.default = self.packages.x86_64-linux.bottin;
  };
}