Commit cbcb4b98 authored by Doron Behar's avatar Doron Behar
Browse files

octavePackages: no with lib; in meta

parent a4f23f62
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -23,11 +23,11 @@ buildOctavePackage rec {
    arduino-core-unwrapped
  ];

  meta = with lib; {
  meta = {
    name = "Octave Arduino Toolkit";
    homepage = "https://octave.sourceforge.io/arduino/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Basic Octave implementation of the matlab arduino extension, allowing communication to a programmed arduino board to control its hardware";
  };
}
+4 −4
Original line number Diff line number Diff line
@@ -27,11 +27,11 @@ buildOctavePackage rec {
    rtmidi
  ];

  meta = with lib; {
  meta = {
    homepage = "https://octave.sourceforge.io/audio/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Audio and MIDI Toolbox for GNU Octave";
    platforms = platforms.linux; # Because of run-time dependency on jack2 and alsa-lib
    platforms = lib.platforms.linux; # Because of run-time dependency on jack2 and alsa-lib
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -22,10 +22,10 @@ buildOctavePackage rec {
    msh
  ];

  meta = with lib; {
  meta = {
    homepage = "https://octave.sourceforge.io/bim/index.html";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ KarlJoad ];
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Package for solving Diffusion Advection Reaction (DAR) Partial Differential Equations";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -13,10 +13,10 @@ buildOctavePackage rec {
    sha256 = "0i8ry347y5f5db3702nhpsmfys9v18ks2fsmpdqpy3fcvrwaxdsb";
  };

  meta = with lib; {
  meta = {
    homepage = "https://octave.sourceforge.io/bsltl/index.html";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ KarlJoad ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Free collection of OCTAVE/MATLAB routines for working with the biospeckle laser technique";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -13,10 +13,10 @@ buildOctavePackage rec {
    sha256 = "0hygj7cpwrs2w9bfb7qrvv7gq410bfiddqvza8smg766pqmfp1s1";
  };

  meta = with lib; {
  meta = {
    homepage = "https://octave.sourceforge.io/cgi/index.html";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ KarlJoad ];
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Common Gateway Interface for Octave";
  };
}
Loading