Commit a8a382d7 authored by Thiago Kenji Okada's avatar Thiago Kenji Okada
Browse files

libtorrent: remove nested usage of with

parent 273ed561
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -41,11 +41,11 @@ stdenv.mkDerivation {

  enableParallelBuilding = true;

  meta = with lib; {
  meta = {
    homepage = "https://github.com/rakshasa/libtorrent";
    description = "BitTorrent library written in C++ for *nix, with focus on high performance and good code";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ ebzzry codyopel thiagokokada ];
    platforms = platforms.unix;
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ ebzzry codyopel thiagokokada ];
    platforms = lib.platforms.unix;
  };
}