mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
mathemagix: init at 11126
This commit is contained in:
parent
3433658c7d
commit
63ca0c7271
45
pkgs/by-name/ma/mathemagix/package.nix
Normal file
45
pkgs/by-name/ma/mathemagix/package.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchsvn,
|
||||
readline,
|
||||
ncurses,
|
||||
bison,
|
||||
libtool,
|
||||
gmp,
|
||||
mpfr,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "mathemagix";
|
||||
version = "11126";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://subversion.renater.fr/anonscm/svn/mmx/";
|
||||
rev = 11126;
|
||||
hash = "sha256-AFnYd5oFg/wgaHPjfZmqXNljEpoFW4h6f3UG+KZauEs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
readline
|
||||
ncurses
|
||||
bison
|
||||
libtool
|
||||
gmp
|
||||
mpfr
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
export HOME="$PWD"
|
||||
'';
|
||||
|
||||
configureFlags = [ "--prefix=${placeholder "out"}" ];
|
||||
|
||||
meta = {
|
||||
description = "Mathemagix is a free computer algebra and analysis system. It consists of a high level language with a compiler and a series of mathematical libraries, some of which are written in C++.";
|
||||
homepage = "http://www.mathemagix.org/";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ drupol ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user