4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
781 B
Nix
33 lines
781 B
Nix
{ lib, stdenv, fetchFromGitHub, buildGoModule
|
|
, pkg-config, ffmpeg, gnutls
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "livepeer";
|
|
version = "0.5.12";
|
|
|
|
runVend = true;
|
|
vendorSha256 = "13cgwpf3v4vlvb0mgdxsdybpghx1cp3fzkdwmq8b193a8dcl8s63";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "livepeer";
|
|
repo = "go-livepeer";
|
|
rev = "v${version}";
|
|
sha256 = "15gx6pd6zn40x60p07dyaf1ydxvrg372lk3djp302mph8y0ijqfg";
|
|
};
|
|
|
|
# livepeer_cli has a vendoring problem
|
|
subPackages = [ "cmd/livepeer" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ ffmpeg gnutls ];
|
|
|
|
meta = with lib; {
|
|
description = "Official Go implementation of the Livepeer protocol";
|
|
homepage = "https://livepeer.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ elitak ];
|
|
};
|
|
}
|