nixpkgs/pkgs/applications/science/math/LiE/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

48 lines
1.4 KiB
Nix

{ stdenv, fetchurl
, bison, readline }:
stdenv.mkDerivation rec {
version = "2.2.2";
# The current version of LiE is 2.2.2, which is more or less unchanged
# since about the year 2000. Minor bugfixes do get applied now and then.
name = "lie-${version}";
meta = {
description = "A Computer algebra package for Lie group computations";
homepage = http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/;
license = stdenv.lib.licenses.lgpl3; # see the website
longDescription = ''
LiE is a computer algebra system that is specialised in computations
involving (reductive) Lie groups and their representations. It is
publically available for free in source code. For a description of its
characteristics, we refer to the following sources of information.
''; # take from the website
platforms = stdenv.lib.platforms.linux;
maintainers = [ ]; # this package is probably not going to change anyway
};
src = fetchurl {
url = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/conLiE.tar.gz";
sha256 = "07lbj75qqr4pq1j1qz8fyfnmrz1gnk92lnsshxycfavxl5zzdmn4";
};
buildInputs = [ bison readline ];
patchPhase = ''
substituteInPlace make_lie \
--replace \`/bin/pwd\` $out
'';
installPhase = ''
mkdir -vp $out/bin
cp -v Lie.exe $out
cp -v lie $out/bin
cp -v LEARN* $out
cp -v INFO* $out
'';
}