19 lines
417 B
Nix
19 lines
417 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
with pkgs;
|
||
|
mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
go_1_17
|
||
|
gcc
|
||
|
gst_all_1.gstreamer
|
||
|
gst_all_1.gstreamer.dev
|
||
|
gst_all_1.gst-plugins-base
|
||
|
gst_all_1.gst-plugins-good
|
||
|
gst_all_1.gst-plugins-bad
|
||
|
gst_all_1.gst-plugins-ugly
|
||
|
pkg-config
|
||
|
protoc-gen-go
|
||
|
protoc-gen-go-grpc
|
||
|
protobuf
|
||
|
go-tools
|
||
|
];
|
||
|
}
|