summary refs log tree commit diff
path: root/pkgs/development/interpreters/rakudo
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-06-07 10:50:54 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-06-09 03:10:09 -0700
commit70b0f3128d4b9aa72467ae52bba86f9c431457ed (patch)
tree9733aab453901e5477fd5f750a4c936466cf57cd /pkgs/development/interpreters/rakudo
parent109096247a20ed1141f1f373cd41c1674027c7f1 (diff)
downloadnixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar.gz
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar.bz2
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar.lz
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar.xz
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.tar.zst
nixlib-70b0f3128d4b9aa72467ae52bba86f9c431457ed.zip
rakudo: 2016.01 -> 2016.04
Updating Rakudo (Perl 6 compiler) to 2016.04
Diffstat (limited to 'pkgs/development/interpreters/rakudo')
-rw-r--r--pkgs/development/interpreters/rakudo/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/rakudo/default.nix b/pkgs/development/interpreters/rakudo/default.nix
index e1d1ccba4712..04e06d83d139 100644
--- a/pkgs/development/interpreters/rakudo/default.nix
+++ b/pkgs/development/interpreters/rakudo/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "rakudo-star-${version}";
-  version = "2016.01";
+  version = "2016.04";
 
   src = fetchurl {
     url    = "http://rakudo.org/downloads/star/${name}.tar.gz";
-    sha256 = "feb385c5d05166061f413882e442d3a0ec53884918768940d3f00bb63bc85497";
+    sha256 = "11xzgwy155xpagrn3gzg8vqnqgjxwar70a3gzzmc9sica5064pva";
   };
 
   buildInputs = [ icu zlib gmp readline perl ];
@@ -17,11 +17,11 @@ stdenv.mkDerivation rec {
       "--gen-nqp"
     ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A Perl 6 implementation";
     homepage    = "http://www.rakudo.org";
-    license     = stdenv.lib.licenses.artistic2;
-    platforms   = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+    license     = licenses.artistic2;
+    platforms   = platforms.unix;
+    maintainers = [ maintainers.thoughtpolice ];
   };
 }