mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.4 KiB
Nix
41 lines
1.4 KiB
Nix
{lib, stdenv, fetchpatch, fetchurl, gmp, mpir, cddlib}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "gfan";
|
|
version = "0.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://home.math.au.dk/jensen/software/gfan/gfan${version}.tar.gz";
|
|
sha256 = "02pihqb1lb76a0xbfwjzs1cd6ay3ldfxsm8dvsbl6qs3vkjxax56";
|
|
};
|
|
|
|
patches = [
|
|
./gfan-0.6.2-cddlib-prefix.patch
|
|
] ++ lib.optionals (stdenv.cc.isClang) [
|
|
(fetchpatch {
|
|
name = "clang-fix-miscompilation.patch";
|
|
url = "https://raw.githubusercontent.com/sagemath/sage/eea1f59394a5066e9acd8ae39a90302820914ee3/build/pkgs/gfan/patches/nodel.patch";
|
|
sha256 = "sha256-RrncSgFyrBIk/Bwe3accxiJ2rpOSJKQ84cV/uBvQsDc=";
|
|
})
|
|
];
|
|
|
|
postPatch = lib.optionalString stdenv.cc.isClang ''
|
|
substituteInPlace Makefile --replace "-fno-guess-branch-probability" ""
|
|
|
|
for f in $(find -name "*.h" -or -name "*.cpp"); do
|
|
substituteInPlace "$f" --replace-quiet "log2" "_log2"
|
|
done
|
|
'';
|
|
|
|
buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "CXX=${stdenv.cc.targetPrefix}c++" ];
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
buildInputs = [ gmp mpir cddlib ];
|
|
|
|
meta = {
|
|
description = "Software package for computing Gröbner fans and tropical varieties";
|
|
license = lib.licenses.gpl2 ;
|
|
maintainers = [lib.maintainers.raskin];
|
|
platforms = lib.platforms.unix;
|
|
homepage = "http://home.math.au.dk/jensen/software/gfan/gfan.html";
|
|
};
|
|
}
|