lnch: unstable-2021-02-10 -> unstable-2021-08-15

This commit is contained in:
Aaron Jheng 2022-10-17 03:25:29 +00:00
parent 0f3ea34875
commit 10b4690b65
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,22 +1,23 @@
{ lib, fetchFromGitHub, buildGoPackage }: { lib, fetchFromGitHub, buildGoModule }:
buildGoPackage rec { buildGoModule rec {
pname = "lnch"; pname = "lnch";
version = "unstable-2021-02-10"; version = "unstable-2021-08-15";
goPackagePath = "github.com/oem/${pname}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "oem"; owner = "oem";
repo = pname; repo = pname;
rev = "6ed336dd893afa071178b8ac6f6297d23fc55514"; rev = "56b5e256b46c002821bef3b9c1b6f68b9dbb4207";
sha256 = "K2TV+mx6C3/REJyDpC6a/Zn/ZZFxkDMC3EnkveH6YNQ="; sha256 = "sha256-Iro/FjPFMqulcK90MbludnOXkMEHW0QSCoQRL01/LDE";
}; };
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/oem/lnch"; homepage = "https://github.com/oem/lnch";
description = "Launches a process and moves it out of the process group"; description = "Launches a process and moves it out of the process group";
license = licenses.mit; license = licenses.mit;
platforms = with platforms; all;
}; };
} }