Commit 2496dd62 authored by Phillip Seeber's avatar Phillip Seeber
Browse files

jkqtplotter: init at 5.0.0-unstable-2025-10-13

parent 2e895348
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  cmake,
  qttools,
  wrapQtAppsHook,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "jkqtplotter";
  version = "5.0.0-unstable-2025-10-13";

  src = fetchFromGitHub {
    owner = "jkriege2";
    repo = "JKQtPlotter";
    rev = "d243218119b1632987df26baea0d4bc6ccdee533";
    hash = "sha256-fLkZGl4LYr9zdGjxxhcU6IZkpXV/Sex4TC9DFPyw43M=";
  };

  nativeBuildInputs = [
    cmake
    wrapQtAppsHook
  ];

  buildInputs = [
    qttools
  ];

  meta = {
    description = "Qt plotting framework";
    maintainers = [ lib.maintainers.sheepforce ];
    homepage = "https://github.com/jkriege2/JKQtPlotter";
    license = lib.licenses.lgpl21Plus;
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -3131,6 +3131,8 @@ with pkgs;

  jl = haskellPackages.jl;

  jkqtplotter = libsForQt5.callPackage ../development/libraries/jkqtplotter { };

  joplin = nodePackages.joplin;

  jpylyzer = with python3Packages; toPythonApplication jpylyzer;