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