Skip to content

Commit

Permalink
firectl: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xrelkd authored and jonringer committed Oct 28, 2019
1 parent 4fbb0a3 commit cbeb657
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/applications/virtualization/firectl/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "firectl";
version = "0.1.0";

src = fetchFromGitHub {
owner = "firecracker-microvm";
repo = pname;
rev = "v${version}";
sha256 = "1ni3yx4rjhrkqk2038c6hkb2jwsdj2llx233wd5wgpvb6c57652p";
};

modSha256 = "1nqjz1afklcxc3xcpmygjdh3lfxjk6zvmghr8z8fr3nw2wvw2ddr";

meta = with stdenv.lib; {
description = "A command-line tool to run Firecracker microVMs";
homepage = https://github.com/firecracker-microvm/firectl;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ xrelkd ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1655,6 +1655,8 @@ in

firecracker = callPackage ../applications/virtualization/firecracker { };

firectl = callPackage ../applications/virtualization/firectl { };

firestarter = callPackage ../applications/misc/firestarter { };

fsmon = callPackage ../tools/misc/fsmon { };
Expand Down

0 comments on commit cbeb657

Please sign in to comment.