mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #245339 from codedownio/fix-octave-kernel
octave-kernel: fix broken logo path and modernize meta
This commit is contained in:
commit
f066c5e367
@ -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
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user