nixpkgs/pkgs/applications/science/geometry/gama/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
617 B
Nix
Raw Normal View History

{ 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 ];
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;
};
}