python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / xastir / default.nix
blob1af9f8e249e5cf4c3eb67662f46c23d59f6918c0
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
2 , curl, db, libgeotiff
3 , xorg, motif, pcre
4 , perl, proj, rastermagick, shapelib
5 }:
7 stdenv.mkDerivation rec {
8   pname = "xastir";
9   version = "2.1.8";
11   src = fetchFromGitHub {
12     owner = pname;
13     repo = pname;
14     rev = "Release-${version}";
15     hash = "sha256-hRe0KO1lWOv3hNNDMS70t+X1rxuhNlNKykmo4LEU+U0=";
16   };
18   nativeBuildInputs = [
19     autoreconfHook
20     pkg-config
21   ];
23   buildInputs = [
24     curl db libgeotiff
25     xorg.libXpm xorg.libXt motif pcre
26     perl proj rastermagick shapelib
27   ];
29   configureFlags = [ "--with-motif-includes=${motif}/include" ];
31   postPatch = "patchShebangs .";
33   meta = with lib; {
34     description = "Graphical APRS client";
35     homepage = "https://xastir.org";
36     license = licenses.gpl2;
37     maintainers = [ maintainers.ehmry ];
38     platforms   = platforms.linux;
39   };