liblc3 1.0.4 -> 1.1.0 https://github.com/google/liblc3/releases attrpath: liblc3 Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , meson , ninja }: let name = "liblc3"; version = "1.1.0"; in stdenv.mkDerivation { pname = name; version = version; src = fetchFromGitHub { owner = "google"; repo = "liblc3"; rev = "v${version}"; sha256 = "sha256-pKd9wOrDjKhWX8vTsg6qkE71FQlsC7VM/uq0ss1vsAQ="; }; outputs = [ "out" "dev" ]; nativeBuildInputs = [ meson ninja ]; meta = with lib; { description = "LC3 (Low Complexity Communication Codec) is an efficient low latency audio codec"; homepage = "https://github.com/google/liblc3"; license = licenses.asl20; platforms = platforms.linux; maintainers = with maintainers; [ jansol ]; }; }