Files
audio-conv/shell.nix
2020-11-07 17:17:39 +01:00

23 lines
450 B
Nix

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