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";
|
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;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue