Unverified Commit c1976991 authored by Defelo's avatar Defelo
Browse files

jnv: remove `with lib;`

parent a8300afe
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -28,12 +28,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
    ]
  );

  meta = with lib; {
  meta = {
    description = "Interactive JSON filter using jq";
    mainProgram = "jnv";
    homepage = "https://github.com/ynqa/jnv";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [
      nealfennimore
      nshalman
    ];