Commit f258b0ee authored by Hetrick, John's avatar Hetrick, John
Browse files

Added nxs2taco a pysen utility

nxs2taco was added at the request of Piotr for
pysen users.
parent a9fad775
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
Name:           nsd-app-wrap
Version:        2.13
Version:        2.14
Release:        1%{?dist}
Summary:        Wrapper scripts to launch python applications installed via anaconda
Vendor:         Peter F. Peterson
@@ -48,6 +48,7 @@ install -m 755 nr_launcher %{buildroot}%{_bindir}/
install -m 755 nsd-app-wrap.sh                        %{buildroot}%{_bindir}/
install -m 755 nsd-conda-wrap.sh                      %{buildroot}%{_bindir}/
install -m 755 nseplot                                %{buildroot}%{_bindir}/
install -m 755 nxs2taco                               %{buildroot}%{_bindir}/
install -m 755 paraview                               %{buildroot}%{_bindir}/
install -m 755 pyrs                                   %{buildroot}%{_bindir}/
install -m 755 quicknxs                               %{buildroot}%{_bindir}/
@@ -106,6 +107,9 @@ install -m 644 desktop/ibeatles.desktop %{buildroot}%{_datadir}/a
%{_prefix}/share/applications/*

%changelog
* Tue Dec 16 2025 John Hetrick
- Added nxs2taco, a pysen utility

* Thu Dec 04 2025 Daniel Caballero
- Added McStas

src/nxs2taco

0 → 100755
+15 −0
Original line number Diff line number Diff line
#!/bin/bash

# select the environment to use
# current default is system version
PIXI_ENVIRON=pysen

# import library to do the real work
# shellcheck disable=SC1091
. "$(dirname "$(realpath "$0")")/nsd-app-wrap.sh" ||
    . /bin/nsd-app-wrap.sh

# put together arguments - conda_env, application, argv
args=("${PIXI_ENVIRON}" "nxs2taco" "$@")
# launch the tool
pixi_launch "${args[@]}"