summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorFarid Zakaria <fmzakari@google.com>2020-07-17 15:01:27 -0700
committerJon <jonringer@users.noreply.github.com>2020-08-04 14:50:17 -0700
commitd764809c4d967028e2c24746135de342ea078e85 (patch)
tree3b4c646a43bcab26399558d21d7ca20f0fc6d25b /pkgs/development/interpreters
parentbcb7327a0a5bb4a52988095ab91449d47c792ecb (diff)
downloadnixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar.gz
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar.bz2
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar.lz
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar.xz
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.tar.zst
nixpkgs-d764809c4d967028e2c24746135de342ea078e85.zip
maintainers: add fzakaria
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/jruby/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/jruby/default.nix b/pkgs/development/interpreters/jruby/default.nix
index 6ce5eb905fc..734ab78b4c5 100644
--- a/pkgs/development/interpreters/jruby/default.nix
+++ b/pkgs/development/interpreters/jruby/default.nix
@@ -46,11 +46,12 @@ jruby = stdenv.mkDerivation rec {
     libPath = "lib/${rubyEngine}/${rubyVersion.libDir}";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Ruby interpreter written in Java";
     homepage = "http://jruby.org/";
-    license = with stdenv.lib.licenses; [ cpl10 gpl2 lgpl21 ];
-    platforms = stdenv.lib.platforms.unix;
+    license = with licenses; [ cpl10 gpl2 lgpl21 ];
+    platforms = platforms.unix;
+    maintainers = [ maintainers.fzakaria ];
   };
 };
 in jruby.overrideAttrs (oldAttrs: {