Merge pull request #271452 from paveloom/gr-framework

gr-framework: 0.72.10 -> 0.72.11 + refactor
This commit is contained in:
Weijia Wang 2023-12-04 00:45:37 +01:00 committed by GitHub
commit 5f044439fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,10 @@
, fetchFromGitHub
, nix-update-script
, cairo
, cmake
, wrapQtAppsHook
, cairo
, ffmpeg
, freetype
, ghostscript
@ -13,20 +15,19 @@
, libtiff
, qhull
, qtbase
, wrapQtAppsHook
, xorg
, zeromq
}:
stdenv.mkDerivation rec {
pname = "gr-framework";
version = "0.72.10";
version = "0.72.11";
src = fetchFromGitHub {
owner = "sciapp";
repo = "gr";
rev = "v${version}";
hash = "sha256-ZFaun8PBtPTmhZ0+OHzUu27NvcJGxsImh+c7ZvCTNa0=";
hash = "sha256-HspDRqO/JKpPeHOfctYAOwwR3y1u+GW3v0OnN7OfLT4=";
};
patches = [
@ -60,11 +61,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = nix-update-script { };
meta = {
meta = with lib; {
description = "GR framework is a graphics library for visualisation applications";
homepage = "https://gr-framework.org";
maintainers = [ lib.maintainers.paveloom ];
license = lib.licenses.mit;
platforms = lib.platforms.unix;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ paveloom ];
};
}