Merge pull request #88694 from AndersonTorres/lnch-new

lnch: init at 2017-02-16
This commit is contained in:
Anderson Torres 2020-05-23 13:19:39 -03:00 committed by GitHub
commit 29d57de301
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View 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
};
}

View file

@ -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 { };