about summary refs log tree commit diff
path: root/pkgs/development/libraries/liboggz
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 21:27:58 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 22:36:21 +0200
commit4009fa08d11add1b50730c679b1733701802c354 (patch)
tree427e41f7d7bd67ea9816bf275488a874ee1654f6 /pkgs/development/libraries/liboggz
parent4d291d5a77d4717171fdd67ec6b97b7a2c3930da (diff)
liboggz: add license
Diffstat (limited to 'pkgs/development/libraries/liboggz')
-rw-r--r--pkgs/development/libraries/liboggz/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/liboggz/default.nix b/pkgs/development/libraries/liboggz/default.nix
index f6fe9ecd03a0c..d7c3b747924a8 100644
--- a/pkgs/development/libraries/liboggz/default.nix
+++ b/pkgs/development/libraries/liboggz/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://xiph.org/oggz/;
     description = "A C library and tools for manipulating with Ogg files and streams";
     longDescription = ''
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
       interleaving data container developed by Monty at Xiph.Org, originally to
       support the Ogg Vorbis audio format but now used for many free codecs
       including Dirac, FLAC, Speex and Theora.'';
-    maintainers = [ ];
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.bsd3;
   };
 }