mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
34 lines
861 B
Nix
34 lines
861 B
Nix
{ stdenv, fetchFromGitHub
|
|
, wrapGAppsHook, cmake, gettext
|
|
, maxima, wxGTK, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wxmaxima-${version}";
|
|
version = "19.03.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andrejv";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${version}";
|
|
sha256 = "0s7bdykc77slqix28cyaa6x8wvxrn8461mkdgxflvi2apwsl56aa";
|
|
};
|
|
|
|
buildInputs = [ wxGTK maxima gnome3.adwaita-icon-theme ];
|
|
|
|
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 = https://wxmaxima-developers.github.io/wxmaxima/;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.peti ];
|
|
};
|
|
}
|