opusfile: add platforms, cleanup
This commit is contained in:
parent
16308a0cb3
commit
c0f72cfe33
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}:
|
{ stdenv, fetchurl, pkgconfig, openssl, libogg, libopus }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "opusfile-0.6";
|
name = "opusfile-0.6";
|
||||||
@ -7,12 +7,14 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "19iys2kld75k0210b807i4illrdmj3cmmnrgxlc9y4vf6mxp2a14";
|
sha256 = "19iys2kld75k0210b807i4illrdmj3cmmnrgxlc9y4vf6mxp2a14";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl libogg libopus ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ openssl libogg libopus ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High-level API for decoding and seeking in .opus files";
|
description = "High-level API for decoding and seeking in .opus files";
|
||||||
homepage = http://www.opus-codec.org/;
|
homepage = http://www.opus-codec.org/;
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user