Unverified Commit 6d644816 authored by Sizhe Zhao's avatar Sizhe Zhao
Browse files

nqp: avoid with lib;

parent cd8b7553
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -39,12 +39,12 @@ stdenv.mkDerivation rec {

  doCheck = true;

  meta = with lib; {
  meta = {
    description = "Not Quite Perl -- a lightweight Raku-like environment for virtual machines";
    homepage = "https://github.com/Raku/nqp";
    license = licenses.artistic2;
    platforms = platforms.unix;
    maintainers = with maintainers; [
    license = lib.licenses.artistic2;
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [
      thoughtpolice
      sgo
      prince213