Commit 4f2e5ffc authored by techknowlogick's avatar techknowlogick
Browse files

flyctl: move to pkgs/by-name

parent ce97ee47
Loading
Loading
Loading
Loading
+18 −4
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub, testers, flyctl, installShellFiles }:
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  testers,
  flyctl,
  installShellFiles,
}:

buildGoModule rec {
  pname = "flyctl";
@@ -16,7 +23,8 @@ buildGoModule rec {
  subPackages = [ "." ];

  ldflags = [
    "-s" "-w"
    "-s"
    "-w"
    "-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z"
    "-X github.com/superfly/flyctl/internal/buildinfo.buildVersion=${version}"
  ];
@@ -64,7 +72,13 @@ buildGoModule rec {
    downloadPage = "https://github.com/superfly/flyctl";
    homepage = "https://fly.io/";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ adtya jsierles techknowlogick RaghavSood teutat3s ];
    maintainers = with lib.maintainers; [
      adtya
      jsierles
      techknowlogick
      RaghavSood
      teutat3s
    ];
    mainProgram = "flyctl";
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -14504,8 +14504,6 @@ with pkgs;
  flasm = callPackage ../development/compilers/flasm { };
  flyctl = callPackage ../development/web/flyctl { };
  fluidd = callPackage ../applications/misc/fluidd { };
  flutterPackages-bin = recurseIntoAttrs (callPackage ../development/compilers/flutter { });