tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flyctl: move to pkgs/by-name
techknowlogick
1 year ago
4f2e5ffc
ce97ee47
+18
-6
3 changed files
expand all
collapse all
unified
split
pkgs
by-name
fl
flyctl
disable-auto-update.patch
package.nix
top-level
all-packages.nix
+18
-4
pkgs/development/web/flyctl/default.nix
pkgs/by-name/fl/flyctl/package.nix
···
1
1
-
{ lib, buildGoModule, fetchFromGitHub, testers, flyctl, installShellFiles }:
1
1
+
{
2
2
+
lib,
3
3
+
buildGoModule,
4
4
+
fetchFromGitHub,
5
5
+
testers,
6
6
+
flyctl,
7
7
+
installShellFiles,
8
8
+
}:
2
9
3
10
buildGoModule rec {
4
11
pname = "flyctl";
···
16
23
subPackages = [ "." ];
17
24
18
25
ldflags = [
19
19
-
"-s" "-w"
26
26
+
"-s"
27
27
+
"-w"
20
28
"-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z"
21
29
"-X github.com/superfly/flyctl/internal/buildinfo.buildVersion=${version}"
22
30
];
23
23
-
tags = ["production"];
31
31
+
tags = [ "production" ];
24
32
25
33
nativeBuildInputs = [ installShellFiles ];
26
34
···
64
72
downloadPage = "https://github.com/superfly/flyctl";
65
73
homepage = "https://fly.io/";
66
74
license = lib.licenses.asl20;
67
67
-
maintainers = with lib.maintainers; [ adtya jsierles techknowlogick RaghavSood teutat3s ];
75
75
+
maintainers = with lib.maintainers; [
76
76
+
adtya
77
77
+
jsierles
78
78
+
techknowlogick
79
79
+
RaghavSood
80
80
+
teutat3s
81
81
+
];
68
82
mainProgram = "flyctl";
69
83
};
70
84
}
pkgs/development/web/flyctl/disable-auto-update.patch
pkgs/by-name/fl/flyctl/disable-auto-update.patch
-2
pkgs/top-level/all-packages.nix
···
14504
14504
14505
14505
flasm = callPackage ../development/compilers/flasm { };
14506
14506
14507
14507
-
flyctl = callPackage ../development/web/flyctl { };
14508
14508
-
14509
14507
fluidd = callPackage ../applications/misc/fluidd { };
14510
14508
14511
14509
flutterPackages-bin = recurseIntoAttrs (callPackage ../development/compilers/flutter { });