depot/pkgs/by-name/ho/host-spawn/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
706 B
Nix

{
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";
};
}