Files
audio-conv/shell.nix
2020-05-26 12:06:04 +02:00

17 lines
399 B
Nix

let
nixpkgs = import <nixpkgs> {};
in
with nixpkgs;
stdenv.mkDerivation {
name = "audio-conv";
buildInputs = [
cargo
rustc
rustfmt
rust-analyzer
gst_all_1.gstreamer
gst_all_1.gst-plugins-base # needed for opus, resample, ...
gst_all_1.gst-plugins-good # needed for flac
];
}