2020-12-23 14:13:04 +00:00
|
|
|
{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }:
|
2020-07-18 10:39:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gama";
|
2022-02-11 20:32:51 +00:00
|
|
|
version = "2.17";
|
2020-07-18 10:39:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
2022-02-11 20:32:51 +00:00
|
|
|
sha256 = "sha256-AyUjcYDUjAYI4p0vVDO7SGqhbO83Kesd+JUUgQf5GPU=";
|
2020-07-18 10:39:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ expat ];
|
|
|
|
|
2020-12-23 14:13:04 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|