File: shell.nix

package info (click to toggle)
gmrender-resurrect 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 644 kB
  • sloc: ansic: 4,772; sh: 223; makefile: 48; xml: 12
file content (20 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This is a nix-shell for use with the nix package manager.
# If you have nix installed, you may simply run `nix-shell`
# in this repo, and have all dependencies ready in the new shell.

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs;
    [
      automake
      autoreconfHook
      pkg-config
      gst_all_1.gstreamer
      libupnp

      gst_all_1.gst-plugins-base
      gst_all_1.gst-plugins-good
      gst_all_1.gst-plugins-bad
      gst_all_1.gst-plugins-ugly
    ];
}