Unverified Commit a8873dec authored by Fernando Rodrigues's avatar Fernando Rodrigues
Browse files

libsnark: remove nested `with lib;` in meta

parent 44b6270d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -39,10 +39,10 @@ stdenv.mkDerivation {
    fetchSubmodules = true;
  };

  meta = with lib; {
  meta = {
    description = "C++ library for zkSNARKs";
    homepage = "https://github.com/scipr-lab/libsnark";
    license = licenses.mit;
    platforms = lib.platforms.linux ++ lib.platforms.darwin;
    license = lib.licenses.mit;
    platforms = lib.platforms.all;
  };
}