Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / mathgl / default.nix
blob811395d27588bfe9330e6213d33c02db93ee499c
1 { lib
2 , stdenv
3 , fetchurl
4 , cmake
5 , zlib
6 , libpng
7 , libGL
8 }:
9 stdenv.mkDerivation rec {
10   pname = "mathgl";
11   version = "8.0.1";
13   src = fetchurl {
14     url = "mirror://sourceforge/mathgl/mathgl-${version}.tar.gz";
15     sha256 = "sha256-yoS/lIDDntMRLpIMFs49jyiYaY9iiW86V3FBKGIqVao=";
16   };
18   nativeBuildInputs = [
19     cmake
20   ];
22   buildInputs = [
23     zlib
24     libpng
25     libGL
26   ];
28   meta = with lib; {
29     description = "A library for scientific data visualization";
30     homepage = "https://mathgl.sourceforge.net/";
31     license = with licenses; [ gpl3 lgpl3 ];
32     platforms = platforms.linux;
33     maintainers = [ maintainers.GabrielDougherty ];
34   };