gst123: sort attributes and remove `with lib;`

authored by

Pol Dellaiera and committed by
Anderson Torres
3af9ec4f 98f70a4d

+4 -4
+4 -4
pkgs/applications/audio/gst123/default.nix
··· 40 40 41 41 enableParallelBuilding = true; 42 42 43 - meta = with lib; { 43 + meta = { 44 + broken = stdenv.isDarwin; 44 45 description = "GStreamer based command line media player"; 45 46 homepage = "https://space.twc.de/~stefan/gst123.php"; 46 - license = licenses.lgpl2Plus; 47 + license = lib.licenses.lgpl2Plus; 47 48 mainProgram = "gst123"; 48 - maintainers = with maintainers; [ swesterfeld ]; 49 + maintainers = with lib.maintainers; [ swesterfeld ]; 49 50 inherit (ncurses.meta) platforms; 50 - broken = stdenv.isDarwin; 51 51 }; 52 52 })