Files
nixpkgs/pkgs/by-name/ho/host-spawn/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
706 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "host-spawn";
version = "1.6.2";
src = fetchFromGitHub {
owner = "1player";
repo = "host-spawn";
rev = "v${version}";
hash = "sha256-bCEyoHsISZ2K7fOsOOAhZRv/a6RptVDlwSspomacb/0=";
};
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";
};
}