summary refs log tree commit diff
path: root/pkgs/applications/science/geometry
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2020-07-18 11:39:59 +0100
committerLancelot SIX <lsix@lancelotsix.com>2020-07-18 18:58:22 +0100
commit9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b (patch)
tree89b7aaabeac772f69dbc2ac74988182182f44221 /pkgs/applications/science/geometry
parenta838caa33a780092776515c9883bca5b5dc161d6 (diff)
downloadnixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar.gz
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar.bz2
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar.lz
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar.xz
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.tar.zst
nixpkgs-9eccd6417a2737a60e8d6b7e6a6ee2fa5578fa8b.zip
gama: init at 2.09
Diffstat (limited to 'pkgs/applications/science/geometry')
-rw-r--r--pkgs/applications/science/geometry/gama/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/science/geometry/gama/default.nix b/pkgs/applications/science/geometry/gama/default.nix
new file mode 100644
index 00000000000..fe606125c55
--- /dev/null
+++ b/pkgs/applications/science/geometry/gama/default.nix
@@ -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;
+  };
+}