02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
24 lines
617 B
Nix
24 lines
617 B
Nix
{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo, zip }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "gama";
|
|
version = "2.21";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-h+Mo+j/Kr7jmMY9fy4hHwn0FM1C9hMI7f7XY/xjBzHY=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|