Programmatically prefixing "CGO_ENABLED =" and "CGO_ENABLED=0;" with "env.", but excluding the files * pkgs/build-support/go/module.nix (buildGoModule implementation) * pkgs/development/compilers/go/* (the Go compiler) * pkgs/build-support/docker/tarsum.nix (not using buildGoModule)
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  stdenv,
 | 
						|
  buildGo123Module,
 | 
						|
  tailscale,
 | 
						|
}:
 | 
						|
 | 
						|
buildGo123Module {
 | 
						|
  pname = "tailscale-nginx-auth";
 | 
						|
  inherit (tailscale) version src vendorHash;
 | 
						|
 | 
						|
  env.CGO_ENABLED = 0;
 | 
						|
 | 
						|
  subPackages = [ "cmd/nginx-auth" ];
 | 
						|
 | 
						|
  ldflags = [
 | 
						|
    "-w"
 | 
						|
    "-s"
 | 
						|
    "-X tailscale.com/version.longStamp=${tailscale.version}"
 | 
						|
    "-X tailscale.com/version.shortStamp=${tailscale.version}"
 | 
						|
  ];
 | 
						|
 | 
						|
  postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
 | 
						|
    mv $out/bin/nginx-auth $out/bin/tailscale.nginx-auth
 | 
						|
    sed -i -e "s#/usr/sbin#$out/bin#" ./cmd/nginx-auth/tailscale.nginx-auth.service
 | 
						|
    install -D -m0444 -t $out/lib/systemd/system ./cmd/nginx-auth/tailscale.nginx-auth.service
 | 
						|
    install -D -m0444 -t $out/lib/systemd/system ./cmd/nginx-auth/tailscale.nginx-auth.socket
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    homepage = "https://tailscale.com";
 | 
						|
    description = "Tool that allows users to use Tailscale Whois authentication with NGINX as a reverse proxy";
 | 
						|
    license = licenses.bsd3;
 | 
						|
    mainProgram = "tailscale.nginx-auth";
 | 
						|
    maintainers = with maintainers; [ phaer ];
 | 
						|
  };
 | 
						|
}
 |