mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 09:02:46 +00:00
5ac085c3cc
The commit description is 18.02.0 -> 20.02.4, because in the last version bump (1c6a193b3e
), the version string was changed, but the hash was not.
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
32 lines
831 B
Nix
32 lines
831 B
Nix
{ stdenv, fetchFromGitHub
|
|
, wrapGAppsHook, cmake, gettext
|
|
, maxima, wxGTK, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxmaxima";
|
|
version = "20.02.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wxMaxima-developers";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${version}";
|
|
sha256 = "106a7jrjwfmymzj70nsv44fm3jbxngr8pmkaghhpwy0ln38lhf54";
|
|
};
|
|
|
|
buildInputs = [ wxGTK maxima gnome3.adwaita-icon-theme ];
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook cmake gettext ];
|
|
|
|
preConfigure = ''
|
|
gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|