summary refs log blame commit diff
path: root/pkgs/development/libraries/iml/default.nix
blob: c666a15b63b747fbdb91d715f21bdd7f476ad67a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                   
                         
                




                                                                        

                 
        






                                           
                         
    


                                                                                                                      


                                           
                                                            


                        
{lib, stdenv, autoreconfHook, fetchurl, gmp, blas}:
stdenv.mkDerivation rec {
  pname = "iml";
  version = "1.0.5";
  src = fetchurl {
    url = "http://www.cs.uwaterloo.ca/~astorjoh/iml-${version}.tar.bz2";
    sha256 = "0akwhhz9b40bz6lrfxpamp7r7wkk48p455qbn04mfnl9a1l6db8x";
  };
  buildInputs = [
    gmp
    blas
  ];
  nativeBuildInputs = [
    autoreconfHook
  ];
  configureFlags = [
    "--with-gmp-include=${gmp.dev}/include"
    "--with-gmp-lib=${gmp}/lib"
    "--with-cblas=-lblas"
  ];
  meta = {
    inherit version;
    description = ''Algorithms for computing exact solutions to dense systems of linear equations over the integers'';
    license = lib.licenses.gpl2Plus;
    maintainers = [lib.maintainers.raskin];
    platforms = lib.platforms.unix;
    homepage = "https://cs.uwaterloo.ca/~astorjoh/iml.html";
    updateWalker = true;
  };
}