tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
opusfile: update from 0.4 to 0.6
Mateusz Kowalczyk
11 years ago
0b20b2db
8a432653
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
opusfile
default.nix
+4
-3
pkgs/applications/audio/opusfile/default.nix
···
1
1
{stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "opusfile-0.4";
4
4
+
name = "opusfile-0.6";
5
5
src = fetchurl {
6
6
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
7
7
-
sha256 = "0h4iwyqgid0cibqwzckz3r94qfp09099nk1cx5nz6i3cf08yldlq";
7
7
+
sha256 = "19iys2kld75k0210b807i4illrdmj3cmmnrgxlc9y4vf6mxp2a14";
8
8
};
9
9
10
10
buildInputs = [ pkgconfig openssl libogg libopus ];
···
12
12
meta = {
13
13
description = "High-level API for decoding and seeking in .opus files";
14
14
homepage = http://www.opus-codec.org/;
15
15
-
license = "BSD";
15
15
+
license = stdenv.lib.licenses.bsd3;
16
16
+
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
16
17
};
17
18
}