forked from mirrors/nixpkgs
fd4a486dea
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
25 lines
618 B
Nix
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;
|
|
};
|
|
}
|