about summary refs log tree commit diff
path: root/pkgs/development/libraries/iml
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-10-11 12:41:41 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-10-26 11:06:37 +0200
commite35a8d52abe2867970000d4518a6073e5f281016 (patch)
tree13191761ca713e79c018d7e7af689d422ef0fa68 /pkgs/development/libraries/iml
parent93bea1ecb0d4ad640a22ad6d0c43db125e6bf514 (diff)
iml: init at 1.0.5
Diffstat (limited to 'pkgs/development/libraries/iml')
-rw-r--r--pkgs/development/libraries/iml/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/iml/default.nix b/pkgs/development/libraries/iml/default.nix
new file mode 100644
index 0000000000000..2ae8aad5ffc46
--- /dev/null
+++ b/pkgs/development/libraries/iml/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, gmp, atlas}:
+stdenv.mkDerivation rec {
+  name = "iml-${version}";
+  version = "1.0.5";
+  src = fetchurl {
+    url = "http://www.cs.uwaterloo.ca/~astorjoh/iml-${version}.tar.bz2";
+    sha256 = "0akwhhz9b40bz6lrfxpamp7r7wkk48p455qbn04mfnl9a1l6db8x";
+  };
+  buildInputs = [gmp atlas];
+  configureFlags = "--with-gmp-include=${gmp.dev}/include --with-gmp-lib=${gmp}/lib";
+  meta = {
+    inherit version;
+    description = ''Algorithms for computing exact solutions to dense systems of linear equations over the integers'';
+    license = stdenv.lib.licenses.gpl2Plus;
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+    homepage = "https://cs.uwaterloo.ca/~astorjoh/iml.html";
+    updateWalker = true;
+  };
+}