xastir: 2.1.6 -> 2.1.8

This commit is contained in:
Emery Hemingway 2021-12-04 14:36:05 +00:00 committed by ehmry
parent 5caed9dc02
commit cc5e2c9613
2 changed files with 9 additions and 5 deletions

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, curl, db, libgeotiff , curl, db, libgeotiff
, libXpm, libXt, motif, pcre , libXpm, libXt, motif, pcre
, perl, proj, rastermagick, shapelib , perl, proj, rastermagick, shapelib
@ -6,17 +6,21 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "xastir"; pname = "xastir";
version = "2.1.6"; version = "2.1.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = "Release-${version}"; rev = "Release-${version}";
sha256 = "0yrvwy6hlc73gzwrsrczflyymyz0k33hj991ajrd1vijq14m3n91"; hash = "sha256-hRe0KO1lWOv3hNNDMS70t+X1rxuhNlNKykmo4LEU+U0=";
}; };
buildInputs = [ nativeBuildInputs = [
autoreconfHook autoreconfHook
pkg-config
];
buildInputs = [
curl db libgeotiff curl db libgeotiff
libXpm libXt motif pcre libXpm libXt motif pcre
perl proj rastermagick shapelib perl proj rastermagick shapelib

View file

@ -29406,7 +29406,7 @@ with pkgs;
}; };
xastir = callPackage ../applications/misc/xastir { xastir = callPackage ../applications/misc/xastir {
rastermagick = imagemagick; rastermagick = imagemagick6;
inherit (xorg) libXt; inherit (xorg) libXt;
}; };