xaster: init at release 208
This commit is contained in:
parent
7196d16e3f
commit
fa65cc067b
37
pkgs/applications/misc/xastir/default.nix
Normal file
37
pkgs/applications/misc/xastir/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook
|
||||
, curl, db, gdal, libgeotiff
|
||||
, libXpm, libXt, motif, pcre
|
||||
, perl, proj, rastermagick, shapelib
|
||||
}:
|
||||
|
||||
let
|
||||
version = "208";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "xastir-"+version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Xastir";
|
||||
repo = "Xastir";
|
||||
rev = "707f3aa8c7ca3e3fecd32d5a4af3f742437e5dce";
|
||||
sha256 = "1mm22vn3hws7dmg9wpaj4s0zkzb77i3aqa2ay3q6kqjkdhv25brl";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ autoreconfHook
|
||||
curl db gdal libgeotiff
|
||||
libXpm libXt motif pcre
|
||||
perl proj rastermagick shapelib
|
||||
];
|
||||
|
||||
configureFlags =
|
||||
[ "--with-motif-includes=${motif}/include" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Graphical APRS client";
|
||||
homepage = https://xastir.org;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.ehmry ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -16001,6 +16001,11 @@ with pkgs;
|
||||
|
||||
xara = callPackage ../applications/graphics/xara { };
|
||||
|
||||
xastir = callPackage ../applications/misc/xastir {
|
||||
rastermagick = imagemagick;
|
||||
inherit (xorg) libXt;
|
||||
};
|
||||
|
||||
xawtv = callPackage ../applications/video/xawtv { };
|
||||
|
||||
xbindkeys = callPackage ../tools/X11/xbindkeys { };
|
||||
|
Loading…
Reference in New Issue
Block a user