nixpkgs/pkgs/applications/science/geometry/gama/default.nix

25 lines
618 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }:
2020-07-18 10:39:59 +00:00
stdenv.mkDerivation rec {
pname = "gama";
version = "2.12";
2020-07-18 10:39:59 +00:00
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
sha256 = "0zfilasalsy29b7viw0iwgnl9bkvp0l87gpxl1hx7379l8agwqyj";
2020-07-18 10:39:59 +00:00
};
buildInputs = [ expat ];
nativeBuildInputs = [ texinfo zip ];
2020-07-18 10:39:59 +00:00
checkInputs = [ octave libxml2 ];
doCheck = true;
meta = with lib ; {
description = "Tools for adjustment of geodetic networks";
homepage = "https://www.gnu.org/software/gama/";
license = licenses.gpl3Plus;
platforms = platforms.all;
};
}