forked from mirrors/nixpkgs
lnch: init at 2017-02-16
lnch is a small go app that launches a process and moves it out of the process group. It is useful to some scripts that need to launch a process without killing the previous one, like custom script app launchers for lightweight window managers.
This commit is contained in:
parent
cac4473b97
commit
6cbffb93ef
22
pkgs/tools/misc/lnch/default.nix
Normal file
22
pkgs/tools/misc/lnch/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "lnch";
|
||||
version = "2017-02-16";
|
||||
|
||||
goPackagePath = "github.com/oem/${pname}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "oem";
|
||||
repo = pname;
|
||||
rev = "f24eed5392f01d2c8a9cfe9cdf70dcfbbf4b6b36";
|
||||
sha256 = "0skzrjnbxq1yj7y64cq7angp4wqnrgw1xp9v8vw9zp8f8zwmpy0y";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/mitchellh/gox";
|
||||
description = "A small go app that launches a process and moves it out of the process group";
|
||||
platforms = platforms.all;
|
||||
license = licenses.publicDomain; # really I don't know
|
||||
};
|
||||
}
|
|
@ -4648,6 +4648,8 @@ in
|
|||
|
||||
lnav = callPackage ../tools/misc/lnav { };
|
||||
|
||||
lnch = callPackage ../tools/misc/lnch { };
|
||||
|
||||
loadlibrary = callPackage ../tools/misc/loadlibrary { };
|
||||
|
||||
loc = callPackage ../development/misc/loc { };
|
||||
|
|
Loading…
Reference in a new issue