24 lines
484 B
Nix
24 lines
484 B
Nix
{
|
|
appimageTools,
|
|
fetchurl,
|
|
libgdiplus,
|
|
}:
|
|
appimageTools.wrapType2 {
|
|
pname = "smath-studio";
|
|
version = "1.3.0.9126";
|
|
|
|
src = fetchurl {
|
|
url = "https://smath.com/en-US/files/Download/cqSek/SMathStudioDesktop.1_3_0_9126.x86_64.ubuntu-22_04.glibc2.35.AppImage";
|
|
sha256 = "sha256-4FpdFGPFaPDK6WWSJHVtxcC8auaNkGmHyUtbegij6cQ=";
|
|
};
|
|
|
|
extraPkgs = pkgs:
|
|
with pkgs; [
|
|
gtk2
|
|
];
|
|
|
|
profile = ''
|
|
export LD_PRELOAD="${libgdiplus}/lib/libgdiplus.so.0"
|
|
'';
|
|
}
|