octave-kernel: fix broken logo path and modernize meta

This commit is contained in:
Tom McLaughlin 2023-07-25 01:18:00 -07:00
parent 795819f915
commit 4f976c2c4b
2 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ rec {
dontInstall = true; dontInstall = true;
buildPhase = '' 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
''; '';
}; };

View File

@ -18,11 +18,11 @@ buildPythonPackage rec {
# There appears to be a similar problem with metakernel's tests # There appears to be a similar problem with metakernel's tests
doCheck = false; doCheck = false;
meta = with lib; { meta = {
description = "A Jupyter kernel for Octave."; description = "A Jupyter kernel for Octave.";
homepage = "https://github.com/Calysto/octave_kernel"; homepage = "https://github.com/Calysto/octave_kernel";
license = licenses.bsd3; license = lib.licenses.bsd3;
maintainers = with maintainers; [ thomasjm ]; maintainers = with lib.maintainers; [ thomasjm ];
platforms = platforms.all; platforms = lib.platforms.all;
}; };
} }