depot/third_party/nixpkgs/pkgs/tools/misc/lnch/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

23 lines
536 B
Nix

{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "lnch";
version = "unstable-2021-08-15";
src = fetchFromGitHub {
owner = "oem";
repo = pname;
rev = "56b5e256b46c002821bef3b9c1b6f68b9dbb4207";
sha256 = "sha256-Iro/FjPFMqulcK90MbludnOXkMEHW0QSCoQRL01/LDE";
};
vendorHash = null;
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/oem/lnch";
description = "Launches a process and moves it out of the process group";
license = licenses.mit;
};
}