Merge pull request #245339 from codedownio/fix-octave-kernel

octave-kernel: fix broken logo path and modernize meta
This commit is contained in:
Rick van Schijndel 2023-07-27 08:35:36 +02:00 committed by GitHub
commit f066c5e367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -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
'';
};

View File

@ -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;
};
}