Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

42 lines
812 B
Nix

{
lib,
stdenv,
fetchurl,
cmake,
zlib,
libpng,
libGL,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mathgl";
version = "8.0.3";
src = fetchurl {
url = "mirror://sourceforge/mathgl/mathgl-${finalAttrs.version}.tar.gz";
sha256 = "sha256-m7qe5qD4bRuPPzugN008t3b3ctu28aAWhMpsC9ViBNY=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
zlib
libpng
libGL
];
meta = {
description = "Library for scientific data visualization";
homepage = "https://mathgl.sourceforge.net/";
license = with lib.licenses; [
gpl3
lgpl3
];
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.GabrielDougherty ];
# build tool make_bin is built for host
broken = !stdenv.buildPlatform.canExecute stdenv.hostPlatform;
};
})