mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 20:44:12 +00:00
Merge pull request #44506 from timokau/sage-new-deps
Init libbraiding and libhomfly
This commit is contained in:
commit
1df8085132
@ -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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user