23 lines
536 B
Nix
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;
|
|
};
|
|
}
|