biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / xastir / default.nix
blob21990075183ddb7accc5de44a43221ff8240c98d
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
2 , curl, db, libgeotiff
3 , xorg, motif, pcre
4 , perl, proj, graphicsmagick, shapelib
5 , libax25
6 }:
8 stdenv.mkDerivation rec {
9   pname = "xastir";
10   version = "2.2.0";
12   src = fetchFromGitHub {
13     owner = pname;
14     repo = pname;
15     rev = "Release-${version}";
16     hash = "sha256-EQXSfH4b5vMiprFcMXCUDNl+R1cHSj9CyhZnUPAMoCw=";
17   };
19   nativeBuildInputs = [
20     autoreconfHook
21     pkg-config
22   ];
24   buildInputs = [
25     curl db libgeotiff
26     xorg.libXpm xorg.libXt motif pcre
27     perl proj graphicsmagick shapelib
28     libax25
29   ];
31   configureFlags = [ "--with-motif-includes=${motif}/include" ];
33   postPatch = "patchShebangs .";
35   meta = with lib; {
36     description = "Graphical APRS client";
37     homepage = "https://xastir.org";
38     license = licenses.gpl2;
39     maintainers = [ maintainers.ehmry ];
40     platforms   = platforms.linux;
41   };