mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
{libsForQt5,kdePackages}.qcustomplot: init at 2.1.1
This commit is contained in:
parent
3fd3d5bc7b
commit
1a270ec36c
3 changed files with 71 additions and 0 deletions
68
pkgs/development/libraries/qcustomplot/default.nix
Normal file
68
pkgs/development/libraries/qcustomplot/default.nix
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
{
|
||||||
|
stdenv,
|
||||||
|
lib,
|
||||||
|
fetchFromGitLab,
|
||||||
|
fetchurl,
|
||||||
|
fixDarwinDylibNames,
|
||||||
|
qtbase,
|
||||||
|
qmake,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "qcustomplot";
|
||||||
|
version = "2.1.1";
|
||||||
|
|
||||||
|
srcs = [
|
||||||
|
(fetchFromGitLab {
|
||||||
|
owner = "ecme2";
|
||||||
|
repo = "QCustomPlot";
|
||||||
|
tag = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-BW8H/vDbhK3b8t8oB92icEBemzcdRdrIz2aKqlUi6UU=";
|
||||||
|
})
|
||||||
|
(fetchurl {
|
||||||
|
url = "https://www.qcustomplot.com/release/${finalAttrs.version}/QCustomPlot-source.tar.gz";
|
||||||
|
hash = "sha256-Xi0i3sd5248B81fL2yXlT7z5ca2u516ujXrSRESHGC8=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
sourceRoot = ".";
|
||||||
|
|
||||||
|
buildInputs = [ qtbase ];
|
||||||
|
|
||||||
|
nativeBuildInputs =
|
||||||
|
[
|
||||||
|
qmake
|
||||||
|
]
|
||||||
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
fixDarwinDylibNames
|
||||||
|
];
|
||||||
|
|
||||||
|
env.LANG = "C.UTF-8";
|
||||||
|
|
||||||
|
qmakeFlags = [ "sharedlib/sharedlib-compilation/sharedlib-compilation.pro" ];
|
||||||
|
|
||||||
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
cp -rv source/* .
|
||||||
|
cp -rv qcustomplot-source/* .
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
install -vDm 644 "qcustomplot.h" -t "$out/include/"
|
||||||
|
install -vdm 755 "$out/lib/"
|
||||||
|
cp -av libqcustomplot*${stdenv.hostPlatform.extensions.sharedLibrary}* "$out/lib/"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://qtcustomplot.com/";
|
||||||
|
description = "Qt C++ widget for plotting and data visualization";
|
||||||
|
license = lib.licenses.gpl3Plus;
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib.maintainers; [ Cryolitia ];
|
||||||
|
};
|
||||||
|
})
|
|
@ -247,6 +247,8 @@ makeScopeWithSplicing' {
|
||||||
|
|
||||||
qcsxcad = callPackage ../development/libraries/science/electronics/qcsxcad { };
|
qcsxcad = callPackage ../development/libraries/science/electronics/qcsxcad { };
|
||||||
|
|
||||||
|
qcustomplot = callPackage ../development/libraries/qcustomplot { };
|
||||||
|
|
||||||
qjson = callPackage ../development/libraries/qjson { };
|
qjson = callPackage ../development/libraries/qjson { };
|
||||||
|
|
||||||
qmltermwidget = callPackage ../development/libraries/qmltermwidget { };
|
qmltermwidget = callPackage ../development/libraries/qmltermwidget { };
|
||||||
|
|
|
@ -86,6 +86,7 @@ makeScopeWithSplicing' {
|
||||||
inherit (qt6) qtbase qt5compat;
|
inherit (qt6) qtbase qt5compat;
|
||||||
};
|
};
|
||||||
qcoro = callPackage ../development/libraries/qcoro { };
|
qcoro = callPackage ../development/libraries/qcoro { };
|
||||||
|
qcustomplot = callPackage ../development/libraries/qcustomplot { };
|
||||||
qgpgme = callPackage ../development/libraries/gpgme { };
|
qgpgme = callPackage ../development/libraries/gpgme { };
|
||||||
qmlbox2d = callPackage ../development/libraries/qmlbox2d { };
|
qmlbox2d = callPackage ../development/libraries/qmlbox2d { };
|
||||||
packagekit-qt = callPackage ../tools/package-management/packagekit/qt.nix { };
|
packagekit-qt = callPackage ../tools/package-management/packagekit/qt.nix { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue