Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c393c5217b8d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2307ac9fe24b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 24, 2019

  1. xastir: 2.1.0 -> 2.1.2

    Version 2.1.2 is compatible with recent versions of proj
    vbgl committed Jun 24, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2307ac9 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/misc/xastir/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/misc/xastir/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{ stdenv, fetchFromGitHub, autoreconfHook
, curl, db, gdal, libgeotiff
, curl, db, libgeotiff
, libXpm, libXt, motif, pcre
, perl, proj, rastermagick, shapelib
}:

stdenv.mkDerivation rec {
pname = "xastir";
version = "2.1.0";
version = "2.1.2";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "Release-${version}";
sha256 = "16zsgy3589snawr8f1fa22ymvpnjy6njvxmsck7q8p2xmmz2ry7r";
sha256 = "1xfzd2m4l0zbb96ak2pniffxdrs9lax0amkxfgdsnyg8x5j0xcxm";
};

buildInputs = [
autoreconfHook
curl db gdal libgeotiff
curl db libgeotiff
libXpm libXt motif pcre
perl proj rastermagick shapelib
];