summary refs log tree commit diff
path: root/pkgs/development/libraries/x264
diff options
context:
space:
mode:
authorSpencer Whitt <sw@swhitt.me>2015-03-25 18:13:47 -0400
committerSpencer Whitt <sw@swhitt.me>2015-03-25 18:13:47 -0400
commit84a15d6d0865e9cc58d78dd68f3ff793248a1956 (patch)
tree4ba9b5e57fcd4fa7405e30edf46588ddf0839e6e /pkgs/development/libraries/x264
parent3630a37dd5330fb1c681597b294abe41186362ba (diff)
downloadnixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar.gz
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar.bz2
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar.lz
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar.xz
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.tar.zst
nixpkgs-84a15d6d0865e9cc58d78dd68f3ff793248a1956.zip
x264: Update metadata
Diffstat (limited to 'pkgs/development/libraries/x264')
-rw-r--r--pkgs/development/libraries/x264/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix
index 9422a8f9ab0..6c541f1aa68 100644
--- a/pkgs/development/libraries/x264/default.nix
+++ b/pkgs/development/libraries/x264/default.nix
@@ -19,9 +19,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ yasm ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "library for encoding H264/AVC video streams";
-    homepage = http://www.videolan.org/developers/x264.html;
-    license = "GPL";
+    homepage    = http://www.videolan.org/developers/x264.html;
+    license     = licenses.gpl2;
+    platforms   = platforms.unix;
+    maintainers = [ maintainers.spwhitt ];
   };
 }