python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / lnch / default.nix
blob5a68c7697cc4f9022bc7998761859097e268af74
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "lnch";
5   version = "unstable-2021-08-15";
7   src = fetchFromGitHub {
8     owner = "oem";
9     repo = pname;
10     rev = "56b5e256b46c002821bef3b9c1b6f68b9dbb4207";
11     sha256 = "sha256-Iro/FjPFMqulcK90MbludnOXkMEHW0QSCoQRL01/LDE";
12   };
14   vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo";
16   ldflags = [ "-s" "-w" ];
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   };