4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
829 B
Nix
31 lines
829 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, wrapGAppsHook, cmake, gettext
|
|
, maxima, wxGTK, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxmaxima";
|
|
version = "20.06.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wxMaxima-developers";
|
|
repo = "wxmaxima";
|
|
rev = "Version-${version}";
|
|
sha256 = "054f7n5kx75ng5j20rd5q27n9xxk03mrd7sbxyym1lsswzimqh4w";
|
|
};
|
|
|
|
buildInputs = [ wxGTK maxima gnome3.adwaita-icon-theme ];
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook cmake gettext ];
|
|
|
|
preConfigure = ''
|
|
gappsWrapperArgs+=(--prefix PATH ":" ${maxima}/bin)
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|