Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@onestream.live>2022-01-03 02:08:36 +0300
committerGuillaume Desmottes <guillaume.desmottes@onestream.live>2022-01-03 02:08:36 +0300
commit0615a94cae638f0a86c3252ee8a12529be1cf1bb (patch)
tree08e24f4ad92cc84db9032c20e537e651ec1d6123 /audio/spotify/src
parent53cef60f2c9d52bf4148bc4fa7d679449bedc81b (diff)
spotify: fix license when registering plugin
Diffstat (limited to 'audio/spotify/src')
-rw-r--r--audio/spotify/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs
index 42d678fd..b9c9dd8b 100644
--- a/audio/spotify/src/lib.rs
+++ b/audio/spotify/src/lib.rs
@@ -20,7 +20,8 @@ gst::plugin_define!(
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
- "MIT/X11",
+ // FIXME: MPL-2.0 is only allowed since 1.18.3 (as unknown) and 1.20 (as known)
+ "MPL",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_REPOSITORY"),