gstreamer-graphix/default.nix

20 lines
445 B
Nix
Raw Normal View History

2022-02-06 00:34:05 +01:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
nativeBuildInputs = [
go_1_17
gcc
gst_all_1.gstreamer
gst_all_1.gstreamer.dev
gst_all_1.gst-libav
2022-02-06 00:34:05 +01:00
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
];
}