fix eval

+3 -3
+3 -3
pkgs/applications/misc/nvpy/default.nix pkgs/applications/editors/nvpy/default.nix
··· 26 wrapProgram $out/bin/nvpy --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" 27 ''; 28 29 - meta = { 30 description = "A simplenote-syncing note-taking tool inspired by Notational Velocity"; 31 homepage = "https://github.com/cpbotha/nvpy"; 32 - platforms = stdenv.lib.platforms.linux; 33 - license = pkgs.lib.licenses.bsd3; 34 }; 35 }
··· 26 wrapProgram $out/bin/nvpy --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" 27 ''; 28 29 + meta = with pkgs.lib; { 30 description = "A simplenote-syncing note-taking tool inspired by Notational Velocity"; 31 homepage = "https://github.com/cpbotha/nvpy"; 32 + platforms = platforms.linux; 33 + license = licenses.bsd3; 34 }; 35 }