mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
636 B
Nix
24 lines
636 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|