mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
lnch: unstable-2021-02-10 -> unstable-2021-08-15
This commit is contained in:
parent
0f3ea34875
commit
10b4690b65
1 changed files with 9 additions and 8 deletions
|
@ -1,22 +1,23 @@
|
|||
{ lib, fetchFromGitHub, buildGoPackage }:
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "lnch";
|
||||
version = "unstable-2021-02-10";
|
||||
|
||||
goPackagePath = "github.com/oem/${pname}";
|
||||
version = "unstable-2021-08-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "oem";
|
||||
repo = pname;
|
||||
rev = "6ed336dd893afa071178b8ac6f6297d23fc55514";
|
||||
sha256 = "K2TV+mx6C3/REJyDpC6a/Zn/ZZFxkDMC3EnkveH6YNQ=";
|
||||
rev = "56b5e256b46c002821bef3b9c1b6f68b9dbb4207";
|
||||
sha256 = "sha256-Iro/FjPFMqulcK90MbludnOXkMEHW0QSCoQRL01/LDE";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/oem/lnch";
|
||||
description = "Launches a process and moves it out of the process group";
|
||||
license = licenses.mit;
|
||||
platforms = with platforms; all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue