b6d97fd731
GitOrigin-RevId: be0b453d7c7eee2090962c9a83749b024ff9acf5
24 lines
618 B
Nix
24 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;
|
|
};
|
|
}
|