2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoPackage }:
|
2020-05-23 15:43:00 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "lnch";
|
2021-02-10 15:26:57 +00:00
|
|
|
version = "unstable-2021-02-10";
|
2020-05-23 15:43:00 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/oem/${pname}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "oem";
|
|
|
|
repo = pname;
|
2021-02-10 15:26:57 +00:00
|
|
|
rev = "6ed336dd893afa071178b8ac6f6297d23fc55514";
|
|
|
|
sha256 = "K2TV+mx6C3/REJyDpC6a/Zn/ZZFxkDMC3EnkveH6YNQ=";
|
2020-05-23 15:43:00 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-23 22:18:03 +00:00
|
|
|
homepage = "https://github.com/oem/lnch";
|
2021-02-10 15:26:57 +00:00
|
|
|
description = "Launches a process and moves it out of the process group";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = with platforms; all;
|
2020-05-23 15:43:00 +00:00
|
|
|
};
|
|
|
|
}
|