84091451ec
Semi-automatic update. These checks were performed: - built on NixOS - found 18.02.0 with grep in /nix/store/q3pav5f98v0imlk0bsr295k8xf2w8njr-wxmaxima-18.02.0 - found 18.02.0 in filename of file in /nix/store/q3pav5f98v0imlk0bsr295k8xf2w8njr-wxmaxima-18.02.0 cc "@peti"
34 lines
843 B
Nix
34 lines
843 B
Nix
{ stdenv, fetchFromGitHub
|
|
, wrapGAppsHook, cmake, gettext
|
|
, maxima, wxGTK, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wxmaxima-${version}";
|
|
version = "18.02.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andrejv";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${version}";
|
|
sha256 = "0s7bdykc77slqix28cyaa6x8wvxrn8461mkdgxflvi2apwsl56aa";
|
|
};
|
|
|
|
buildInputs = [ wxGTK maxima gnome3.defaultIconTheme ];
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook cmake gettext ];
|
|
|
|
preConfigure = ''
|
|
gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Cross platform GUI for the computer algebra system Maxima";
|
|
license = licenses.gpl2;
|
|
homepage = http://wxmaxima.sourceforge.net;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.peti ];
|
|
};
|
|
}
|