Commit 4f976c2c authored by Tom McLaughlin's avatar Tom McLaughlin
Browse files

octave-kernel: fix broken logo path and modernize meta

parent 795819f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ rec {
    dontInstall = true;

    buildPhase = ''
      convert ./libgui/src/icons/logo.png -resize ${size}x${size} $out
      convert ./libgui/src/icons/octave/128x128/logo.png -resize ${size}x${size} $out
    '';
  };

+4 −4
Original line number Diff line number Diff line
@@ -18,11 +18,11 @@ buildPythonPackage rec {
  # There appears to be a similar problem with metakernel's tests
  doCheck = false;

  meta = with lib; {
  meta = {
    description = "A Jupyter kernel for Octave.";
    homepage = "https://github.com/Calysto/octave_kernel";
    license = licenses.bsd3;
    maintainers = with maintainers; [ thomasjm ];
    platforms = platforms.all;
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ thomasjm ];
    platforms = lib.platforms.all;
  };
}