summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-02-25 23:52:57 +0100
committerGitHub <noreply@github.com>2017-02-25 23:52:57 +0100
commit3f45bb2d97217af0ed141b6a83f4a146a87cd882 (patch)
tree3678b7c94032f3a76fcd5c37aec72f25c66c59b0 /pkgs/applications
parenta7a90bc9698da6bd53a86f83f7df51130d18d122 (diff)
parent5af221e6f33cc2fd727d7936750b8693b35d4484 (diff)
Merge pull request #23185 from LnL7/darwin-opusfile
opusfile: enable on darwin
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/opusfile/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/opusfile/default.nix b/pkgs/applications/audio/opusfile/default.nix
index f840ba278cfc..8a7ab8889a66 100644
--- a/pkgs/applications/audio/opusfile/default.nix
+++ b/pkgs/applications/audio/opusfile/default.nix
@@ -13,11 +13,11 @@ stdenv.mkDerivation rec {
patches = [ ./include-multistream.patch ];
configureFlags = [ "--disable-examples" ];
- meta = {
+ meta = with stdenv.lib; {
description = "High-level API for decoding and seeking in .opus files";
homepage = http://www.opus-codec.org/;
- license = stdenv.lib.licenses.bsd3;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
+ license = licenses.bsd3;
+ platforms = platforms.linux ++ platforms.darwin;
+ maintainers = with maintainers; [ fuuzetsu ];
};
}