Unverified Commit 04fa1e1c authored by Colin's avatar Colin Committed by GitHub
Browse files

octave-kernel.sizedLogo: fix and enable strictDeps (#398368)

parents 2b6477a5 16d232ef
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -51,13 +51,14 @@ rec {

      src = octave.src;

      buildInputs = [ imagemagick ];
      nativeBuildInputs = [ imagemagick ];
      strictDeps = true;

      dontConfigure = true;
      dontInstall = true;

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