nixpkgs/pkgs/applications/science/geometry/gama/default.nix
Matthias Beyer fd4a486dea gama: 2.09 -> 2.12
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-12-23 16:58:32 +00:00

25 lines
618 B
Nix

{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }:
stdenv.mkDerivation rec {
pname = "gama";
version = "2.12";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
sha256 = "0zfilasalsy29b7viw0iwgnl9bkvp0l87gpxl1hx7379l8agwqyj";
};
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;
};
}