Commit ad8e810d authored by Jasi's avatar Jasi Committed by Yureka
Browse files

bankstown-lv2: remove `with lib;` usage

parent 789f013c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -31,14 +31,14 @@ rustPlatform.buildRustPackage (finalAttrs: {
    "LIBDIR=lib"
  ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/chadmed/bankstown";
    description = "Lightweight psychoacoustic bass enhancement plugin";
    license = licenses.mit;
    maintainers = with maintainers; [
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      normalcea
      yuka
    ];
    platforms = platforms.linux;
    platforms = lib.platforms.linux;
  };
})