Merge pull request #115885 from MatthewCroughan/fioctl
This commit is contained in:
commit
019908e371
@ -6905,6 +6905,12 @@
|
|||||||
githubId = 16385648;
|
githubId = 16385648;
|
||||||
name = "Niko Pavlinek";
|
name = "Niko Pavlinek";
|
||||||
};
|
};
|
||||||
|
nixinator = {
|
||||||
|
email = "33lockdown33@protonmail.com";
|
||||||
|
github = "nixinator";
|
||||||
|
githubId = 66913205;
|
||||||
|
name = "Rick Sanchez";
|
||||||
|
};
|
||||||
nixy = {
|
nixy = {
|
||||||
email = "nixy@nixy.moe";
|
email = "nixy@nixy.moe";
|
||||||
github = "nixy";
|
github = "nixy";
|
||||||
@ -10806,6 +10812,12 @@
|
|||||||
githubId = 3674056;
|
githubId = 3674056;
|
||||||
name = "Asad Saeeduddin";
|
name = "Asad Saeeduddin";
|
||||||
};
|
};
|
||||||
|
matthewcroughan = {
|
||||||
|
email = "matt@croughan.sh";
|
||||||
|
github = "matthewcroughan";
|
||||||
|
githubId = 26458780;
|
||||||
|
name = "Matthew Croughan";
|
||||||
|
};
|
||||||
ngerstle = {
|
ngerstle = {
|
||||||
name = "Nicholas Gerstle";
|
name = "Nicholas Gerstle";
|
||||||
email = "ngerstle@gmail.com";
|
email = "ngerstle@gmail.com";
|
||||||
|
28
pkgs/tools/admin/fioctl/default.nix
Normal file
28
pkgs/tools/admin/fioctl/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "fioctl";
|
||||||
|
version = "0.14.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "foundriesio";
|
||||||
|
repo = "fioctl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1jbj2w2s78wcnrwyr80jyc11ipjysv5aab3486kphx8ysvvgcwfs";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "1a3x6cv18f0n01f4ac1kprzmby8dphygnwsdl98pmzs3gqqnh284";
|
||||||
|
|
||||||
|
runVend = true;
|
||||||
|
|
||||||
|
buildFlagsArray = ''
|
||||||
|
-ldflags=-s -w -X github.com/foundriesio/fioctl/subcommands/version.Commit=${src.rev}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A simple CLI to manage your Foundries Factory ";
|
||||||
|
homepage = "https://github.com/foundriesio/fioctl";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ nixinator matthewcroughan ];
|
||||||
|
};
|
||||||
|
}
|
@ -2385,6 +2385,8 @@ in
|
|||||||
|
|
||||||
fileshelter = callPackage ../servers/web-apps/fileshelter { };
|
fileshelter = callPackage ../servers/web-apps/fileshelter { };
|
||||||
|
|
||||||
|
fioctl = callPackage ../tools/admin/fioctl { };
|
||||||
|
|
||||||
firecracker = callPackage ../applications/virtualization/firecracker { };
|
firecracker = callPackage ../applications/virtualization/firecracker { };
|
||||||
|
|
||||||
firectl = callPackage ../applications/virtualization/firectl { };
|
firectl = callPackage ../applications/virtualization/firectl { };
|
||||||
|
Loading…
Reference in New Issue
Block a user