e729cebdc9
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/36kx0mbdfnf20mfrcicwgplcz0sibvpk-ginac-1.7.4/bin/viewgar -h` got 0 exit code - ran `/nix/store/36kx0mbdfnf20mfrcicwgplcz0sibvpk-ginac-1.7.4/bin/viewgar --help` got 0 exit code - ran `/nix/store/36kx0mbdfnf20mfrcicwgplcz0sibvpk-ginac-1.7.4/bin/viewgar help` got 0 exit code - found 1.7.4 with grep in /nix/store/36kx0mbdfnf20mfrcicwgplcz0sibvpk-ginac-1.7.4 - found 1.7.4 in filename of file in /nix/store/36kx0mbdfnf20mfrcicwgplcz0sibvpk-ginac-1.7.4
28 lines
689 B
Nix
28 lines
689 B
Nix
{ stdenv, fetchurl, cln, pkgconfig, readline, gmp, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ginac-1.7.4";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/${name}.tar.bz2";
|
|
sha256 = "1vvqv73yk9klbq0mz239zzw77rlp72qcvzci4j1v6rafvji1616n";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cln ];
|
|
|
|
buildInputs = [ readline ] ++ stdenv.lib.optional stdenv.isDarwin gmp;
|
|
|
|
nativeBuildInputs = [ pkgconfig python ];
|
|
|
|
preConfigure = "patchShebangs ginsh";
|
|
|
|
configureFlags = "--disable-rpath";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GiNaC is Not a CAS";
|
|
homepage = http://www.ginac.de/;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|