Unverified Commit 0dba895d authored by Sizhe Zhao's avatar Sizhe Zhao
Browse files

rakudo: avoid with lib;

parent 94a7e3eb
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -42,12 +42,12 @@ stdenv.mkDerivation rec {
    remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/share/perl6/runtime/dynext/libperl6_ops_moar${stdenv.hostPlatform.extensions.sharedLibrary})"
  '';

  meta = with lib; {
  meta = {
    description = "Raku implementation on top of Moar virtual machine";
    homepage = "https://rakudo.org";
    license = licenses.artistic2;
    platforms = platforms.unix;
    maintainers = with maintainers; [
    license = lib.licenses.artistic2;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [
      thoughtpolice
      sgo
      prince213