Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4fbb0a375d38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cbeb6570ace1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 28, 2019

  1. firectl: init at 0.1.0

    xrelkd authored and Jon committed Oct 28, 2019
    Copy the full SHA
    cbeb657 View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/applications/virtualization/firectl/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
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
@@ -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 { };