linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / fltk / default.nix
blob5cbd993fc646d572b22659ae10ded5ebd4392afa
1 { lib, stdenv, fetchurl, pkg-config, xlibsWrapper, xorgproto, libXi
2 , freeglut, libGL, libGLU, libjpeg, zlib, libXft, libpng
3 , libtiff, freetype, Cocoa, AGL, GLUT
4 }:
6 let
7   version = "1.3.5";
8 in
10 stdenv.mkDerivation {
11   pname = "fltk";
12   inherit version;
14   src = fetchurl {
15     url = "https://www.fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz";
16     sha256 = "00jp24z1818k9n6nn6lx7qflqf2k13g4kxr0p8v1d37kanhb4ac7";
17   };
19   patches = lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [ libGLU libGL libjpeg zlib libpng libXft ]
23     ++ lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
25   propagatedBuildInputs = [ xorgproto ]
26     ++ (if stdenv.isDarwin
27         then [ freetype libtiff ]
28         else [ xlibsWrapper libXi freeglut ]);
30   configureFlags = [
31     "--enable-gl"
32     "--enable-largefile"
33     "--enable-shared"
34     "--enable-threads"
35     "--enable-xft"
36   ];
38   enableParallelBuilding = true;
40   meta = with lib; {
41     description = "A C++ cross-platform lightweight GUI library";
42     homepage = "https://www.fltk.org";
43     platforms = platforms.linux ++ platforms.darwin;
44     license = licenses.gpl2;
45   };