nixpkgs/pkgs/tools/misc/lnch/default.nix
2023-11-27 02:17:53 +01:00

25 lines
562 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;
mainProgram = "lnch";
};
}