mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
gama: init at 2.09
This commit is contained in:
parent
a838caa33a
commit
9eccd6417a
24
pkgs/applications/science/geometry/gama/default.nix
Normal file
24
pkgs/applications/science/geometry/gama/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, lib, expat, octave, libxml2, texinfo }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gama";
|
||||
version = "2.09";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0c1b28frl6109arj09v4zr1xs859krn8871mkvis517g5pb55dc9";
|
||||
};
|
||||
|
||||
buildInputs = [ expat ];
|
||||
|
||||
nativeBuildInputs = [ texinfo ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -990,6 +990,8 @@ in
|
||||
|
||||
gaia = callPackage ../development/libraries/gaia { };
|
||||
|
||||
gama = callPackage ../applications/science/geometry/gama { };
|
||||
|
||||
gamecube-tools = callPackage ../development/tools/gamecube-tools { };
|
||||
|
||||
gammy = qt5.callPackage ../tools/misc/gammy { };
|
||||
|
Loading…
Reference in New Issue
Block a user