Merge pull request #44506 from timokau/sage-new-deps

Init libbraiding and libhomfly
This commit is contained in:
Michael Raskin 2018-08-05 15:12:23 +00:00 committed by GitHub
commit 1df8085132
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv
, fetchFromGitHub
, autoreconfHook
}:
stdenv.mkDerivation rec {
version = "1.0";
name = "libbraiding-${version}";
src = fetchFromGitHub {
owner = "miguelmarco";
repo = "libbraiding";
rev = version;
sha256 = "0l68rikfr7k2l547gb3pp3g8cj5zzxwipm79xrb5r8ffj466ydxg";
};
nativeBuildInputs = [
autoreconfHook
];
# no tests included for now (2018-08-05), but can't hurt to activate
doCheck = true;
meta = with stdenv.lib; {
homepage = https://github.com/miguelmarco/libbraiding/;
description = "C++ library for computations on braid groups";
longDescription = ''
A library to compute several properties of braids, including centralizer and conjugacy check.
'';
license = licenses.gpl3;
maintainers = with maintainers; [ timokau ];
platforms = platforms.all;
};
}

View file

@ -0,0 +1,35 @@
{ stdenv
, fetchFromGitHub
, autoreconfHook
, boehmgc
}:
stdenv.mkDerivation rec {
version = "1.02r5";
name = "llibhomfly-${version}";
src = fetchFromGitHub {
owner = "miguelmarco";
repo = "libhomfly";
rev = version;
sha256 = "1szv8iwlhvmy3saigi15xz8vgch92p2lbsm6440v5s8vxj455bvd";
};
buildInputs = [
boehmgc
];
nativeBuildInputs = [
autoreconfHook
];
doCheck = true;
meta = with stdenv.lib; {
homepage = https://github.com/miguelmarco/libhomfly/;
description = "Library to compute the homfly polynomial of knots and links";
license = licenses.unlicense;
maintainers = with maintainers; [ timokau ];
platforms = platforms.all;
};
}

View file

@ -20511,6 +20511,9 @@ with pkgs;
jags = callPackage ../applications/science/math/jags { };
libbraiding = callPackage ../development/libraries/science/math/libbraiding { };
libhomfly = callPackage ../development/libraries/science/math/libhomfly { };
# We have essentially 4 permutations of liblapack: version 3.4.1 or 3.5.0,
# and with or without atlas as a dependency. The default `liblapack` is 3.4.1