nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, fetchFromGitHub, buildGoModule }:
2
3buildGoModule rec {
4 pname = "lnch";
5 version = "unstable-2021-08-15";
6
7 src = fetchFromGitHub {
8 owner = "oem";
9 repo = pname;
10 rev = "56b5e256b46c002821bef3b9c1b6f68b9dbb4207";
11 sha256 = "sha256-Iro/FjPFMqulcK90MbludnOXkMEHW0QSCoQRL01/LDE";
12 };
13
14 vendorSha256 = null;
15
16 ldflags = [ "-s" "-w" ];
17
18 meta = with lib; {
19 homepage = "https://github.com/oem/lnch";
20 description = "Launches a process and moves it out of the process group";
21 license = licenses.mit;
22 };
23}