mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
host-spawn: init at 1.6.0 (#349674)
* host-spawn: init at 1.6.0 * Update `license` and `platforms`
This commit is contained in:
parent
67e48a7862
commit
ab7ed101a1
28
pkgs/by-name/ho/host-spawn/package.nix
Normal file
28
pkgs/by-name/ho/host-spawn/package.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "host-spawn";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "1player";
|
||||
repo = "host-spawn";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-017o50MSSkehn4zMEdCTPW2o2IQaXbI21z8Z+jfRuDs=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-Agc3hl+VDTNW7cnh/0g4G8BgzNAX11hKASYQKieBN4M=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/1player/host-spawn";
|
||||
description = "Run commands on your host machine from inside your flatpak sandbox, toolbox or distrobox containers";
|
||||
license = licenses.mit0;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ garrison ];
|
||||
mainProgram = "host-spawn";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user