nixpkgs/pkgs/applications/science/geometry/gama/default.nix
2021-12-10 22:15:01 +00:00

24 lines
617 B
Nix

{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }:
stdenv.mkDerivation rec {
pname = "gama";
version = "2.16";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
sha256 = "sha256-fO2AHZnqRvCF1+AlKDeD3ygivW3zXCuF10O2nKL2CWs=";
};
buildInputs = [ expat ];
nativeBuildInputs = [ texinfo zip ];
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;
};
}