opusfile: update from 0.4 to 0.6

+4 -3
+4 -3
pkgs/applications/audio/opusfile/default.nix
··· 1 {stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}: 2 3 stdenv.mkDerivation rec { 4 - name = "opusfile-0.4"; 5 src = fetchurl { 6 url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz"; 7 - sha256 = "0h4iwyqgid0cibqwzckz3r94qfp09099nk1cx5nz6i3cf08yldlq"; 8 }; 9 10 buildInputs = [ pkgconfig openssl libogg libopus ]; ··· 12 meta = { 13 description = "High-level API for decoding and seeking in .opus files"; 14 homepage = http://www.opus-codec.org/; 15 - license = "BSD"; 16 }; 17 }
··· 1 {stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}: 2 3 stdenv.mkDerivation rec { 4 + name = "opusfile-0.6"; 5 src = fetchurl { 6 url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz"; 7 + sha256 = "19iys2kld75k0210b807i4illrdmj3cmmnrgxlc9y4vf6mxp2a14"; 8 }; 9 10 buildInputs = [ pkgconfig openssl libogg libopus ]; ··· 12 meta = { 13 description = "High-level API for decoding and seeking in .opus files"; 14 homepage = http://www.opus-codec.org/; 15 + license = stdenv.lib.licenses.bsd3; 16 + maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 17 }; 18 }