biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / math / LiE / default.nix
blobdbc66fe2a05fe5f39125209a046db890d04d5456
1 { lib, stdenv, fetchurl
2 , bison, readline }:
4 stdenv.mkDerivation {
5   version = "2.2.2";
6      # The current version of LiE is 2.2.2, which is more or less unchanged
7      # since about the year 2000. Minor bugfixes do get applied now and then.
8   pname = "lie";
10   meta = {
11     description = "Computer algebra package for Lie group computations";
12     mainProgram = "lie";
13     homepage = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/";
14     license = lib.licenses.lgpl3; # see the website
16     longDescription = ''
17       LiE is a computer algebra system that is specialised in computations
18       involving (reductive) Lie groups and their representations. It is
19       publicly available for free in source code. For a description of its
20       characteristics, we refer to the following sources of information.
21     ''; # take from the website
23     platforms = lib.platforms.linux;
24     maintainers = [ ]; # this package is probably not going to change anyway
25   };
27   src = fetchurl {
28     url = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/conLiE.tar.gz";
29     sha256 = "07lbj75qqr4pq1j1qz8fyfnmrz1gnk92lnsshxycfavxl5zzdmn4";
30   };
32   buildInputs = [ bison readline ];
34   patchPhase = ''
35     substituteInPlace make_lie \
36       --replace \`/bin/pwd\` $out
37   '';
39   installPhase = ''
40     mkdir -vp $out/bin
42     cp -v Lie.exe $out
43     cp -v lie $out/bin
45     cp -v LEARN* $out
46     cp -v INFO* $out
47   '';