├── .gitignore ├── .gitmodules ├── COPYING ├── README.md ├── default.nix ├── fi ├── README.md ├── default.nix ├── docker │ ├── builder.sh │ ├── default.nix │ └── setup.sh ├── env ├── gcc-13.3-nvcc.patch ├── linkfiles.sh ├── lmod │ ├── modules.lua │ ├── modules.nix │ └── modules.sh ├── openmpi-1.10-gcc.PATCH ├── openmpi-1.10.7.PATCH ├── openmpi-2.1.6.PATCH ├── py-extension-helpers-setup.py.patch ├── python-ncursesw-py-3.11.4.patch ├── python-ncursesw.patch ├── r.nix ├── repo │ ├── packages │ │ ├── blender │ │ │ └── package.py │ │ ├── disBatch │ │ │ └── package.py │ │ ├── idl │ │ │ └── package.py │ │ ├── libjansson │ │ │ └── package.py │ │ ├── paraview │ │ │ └── paraview_wrapper.sh │ │ ├── pvfmm │ │ │ └── package.py │ │ ├── py-abopt │ │ │ └── package.py │ │ ├── py-bigfile │ │ │ └── package.py │ │ ├── py-cachey │ │ │ └── package.py │ │ ├── py-cons │ │ │ └── package.py │ │ ├── py-etuples │ │ │ └── package.py │ │ ├── py-hdf5plugin │ │ │ └── package.py │ │ ├── py-jupyter-remote-desktop-proxy │ │ │ └── package.py │ │ ├── py-jupyterlmod │ │ │ └── package.py │ │ ├── py-kvsstcp │ │ │ └── package.py │ │ ├── py-logical-unification │ │ │ └── package.py │ │ ├── py-mcfit │ │ │ └── package.py │ │ ├── py-minikanren │ │ │ └── package.py │ │ ├── py-nbodykit │ │ │ └── package.py │ │ ├── py-pfft-python │ │ │ └── package.py │ │ ├── py-pmesh │ │ │ └── package.py │ │ ├── py-pymc │ │ │ └── package.py │ │ ├── py-pyslurm │ │ │ └── package.py │ │ ├── py-pytensor │ │ │ └── package.py │ │ ├── py-runtests │ │ │ └── package.py │ │ ├── py-sharedmem │ │ │ └── package.py │ │ ├── py-websockify │ │ │ └── package.py │ │ ├── py-xarray-einstats │ │ │ └── package.py │ │ ├── rockstar │ │ │ ├── 0001-Fix-to-solve-linking-problem-with-gcc-10.patch │ │ │ └── package.py │ │ ├── slack │ │ │ └── package.py │ │ ├── stkfmm │ │ │ └── package.py │ │ ├── triqs-cthyb │ │ │ └── package.py │ │ ├── triqs-ctseg │ │ │ └── package.py │ │ ├── triqs-dft-tools │ │ │ └── package.py │ │ ├── triqs-hartree-fock │ │ │ └── package.py │ │ ├── triqs-hubbardi │ │ │ └── package.py │ │ ├── triqs-maxent │ │ │ └── package.py │ │ ├── triqs-omegamaxent-interface │ │ │ └── package.py │ │ ├── triqs-tprf │ │ │ └── package.py │ │ └── triqs │ │ │ └── package.py │ └── repo.yaml ├── run └── sra-tools-javadoc.patch ├── jupyter └── kernel │ ├── bash │ ├── builder.sh │ └── default.nix │ ├── builder.py │ ├── default.nix │ └── ir │ ├── builder.R │ ├── builder.sh │ └── default.nix ├── nixpkgs ├── default.nix ├── jdupes.nix ├── overlay.nix ├── sssd │ └── nss-client.nix └── stdenv.nix ├── packs ├── capture.sh ├── default.nix ├── lib.nix ├── lmodCache.nix └── lmodCache.sh ├── patch ├── default.nix ├── nix-ignore-fsea.patch ├── openssh-keysign-setuid.patch └── shadow-nosuid.patch ├── spack ├── bin.nix ├── bin.sh ├── builder.py ├── cache.py ├── config.nix ├── config.sh ├── generate.py ├── install.sh ├── modules.nix ├── modules.py ├── nixpack.py └── repo │ ├── packages │ ├── libass │ │ └── package.py │ ├── mplayer │ │ └── package.py │ ├── mpv │ │ └── package.py │ ├── mupdf │ │ └── package.py │ ├── wecall │ │ ├── cmake-rhel-regex.patch │ │ ├── ncurses.patch │ │ └── package.py │ └── xscreensaver │ │ └── package.py │ └── repo.yaml └── view ├── builder.py └── default.nix /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/default.nix -------------------------------------------------------------------------------- /fi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/README.md -------------------------------------------------------------------------------- /fi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/default.nix -------------------------------------------------------------------------------- /fi/docker/builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/docker/builder.sh -------------------------------------------------------------------------------- /fi/docker/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/docker/default.nix -------------------------------------------------------------------------------- /fi/docker/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/docker/setup.sh -------------------------------------------------------------------------------- /fi/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/env -------------------------------------------------------------------------------- /fi/gcc-13.3-nvcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/gcc-13.3-nvcc.patch -------------------------------------------------------------------------------- /fi/linkfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/linkfiles.sh -------------------------------------------------------------------------------- /fi/lmod/modules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/lmod/modules.lua -------------------------------------------------------------------------------- /fi/lmod/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/lmod/modules.nix -------------------------------------------------------------------------------- /fi/lmod/modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/lmod/modules.sh -------------------------------------------------------------------------------- /fi/openmpi-1.10-gcc.PATCH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/openmpi-1.10-gcc.PATCH -------------------------------------------------------------------------------- /fi/openmpi-1.10.7.PATCH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/openmpi-1.10.7.PATCH -------------------------------------------------------------------------------- /fi/openmpi-2.1.6.PATCH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/openmpi-2.1.6.PATCH -------------------------------------------------------------------------------- /fi/py-extension-helpers-setup.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/py-extension-helpers-setup.py.patch -------------------------------------------------------------------------------- /fi/python-ncursesw-py-3.11.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/python-ncursesw-py-3.11.4.patch -------------------------------------------------------------------------------- /fi/python-ncursesw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/python-ncursesw.patch -------------------------------------------------------------------------------- /fi/r.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/r.nix -------------------------------------------------------------------------------- /fi/repo/packages/blender/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/blender/package.py -------------------------------------------------------------------------------- /fi/repo/packages/disBatch/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/disBatch/package.py -------------------------------------------------------------------------------- /fi/repo/packages/idl/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/idl/package.py -------------------------------------------------------------------------------- /fi/repo/packages/libjansson/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/libjansson/package.py -------------------------------------------------------------------------------- /fi/repo/packages/paraview/paraview_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/paraview/paraview_wrapper.sh -------------------------------------------------------------------------------- /fi/repo/packages/pvfmm/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/pvfmm/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-abopt/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-abopt/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-bigfile/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-bigfile/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-cachey/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-cachey/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-cons/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-cons/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-etuples/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-etuples/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-hdf5plugin/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-hdf5plugin/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-jupyter-remote-desktop-proxy/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-jupyter-remote-desktop-proxy/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-jupyterlmod/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-jupyterlmod/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-kvsstcp/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-kvsstcp/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-logical-unification/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-logical-unification/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-mcfit/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-mcfit/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-minikanren/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-minikanren/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-nbodykit/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-nbodykit/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-pfft-python/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-pfft-python/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-pmesh/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-pmesh/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-pymc/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-pymc/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-pyslurm/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-pyslurm/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-pytensor/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-pytensor/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-runtests/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-runtests/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-sharedmem/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-sharedmem/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-websockify/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-websockify/package.py -------------------------------------------------------------------------------- /fi/repo/packages/py-xarray-einstats/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/py-xarray-einstats/package.py -------------------------------------------------------------------------------- /fi/repo/packages/rockstar/0001-Fix-to-solve-linking-problem-with-gcc-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/rockstar/0001-Fix-to-solve-linking-problem-with-gcc-10.patch -------------------------------------------------------------------------------- /fi/repo/packages/rockstar/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/rockstar/package.py -------------------------------------------------------------------------------- /fi/repo/packages/slack/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/slack/package.py -------------------------------------------------------------------------------- /fi/repo/packages/stkfmm/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/stkfmm/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-cthyb/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-cthyb/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-ctseg/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-ctseg/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-dft-tools/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-dft-tools/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-hartree-fock/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-hartree-fock/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-hubbardi/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-hubbardi/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-maxent/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-maxent/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-omegamaxent-interface/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-omegamaxent-interface/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs-tprf/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs-tprf/package.py -------------------------------------------------------------------------------- /fi/repo/packages/triqs/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/repo/packages/triqs/package.py -------------------------------------------------------------------------------- /fi/repo/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: fi 3 | -------------------------------------------------------------------------------- /fi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/run -------------------------------------------------------------------------------- /fi/sra-tools-javadoc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/fi/sra-tools-javadoc.patch -------------------------------------------------------------------------------- /jupyter/kernel/bash/builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/bash/builder.sh -------------------------------------------------------------------------------- /jupyter/kernel/bash/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/bash/default.nix -------------------------------------------------------------------------------- /jupyter/kernel/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/builder.py -------------------------------------------------------------------------------- /jupyter/kernel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/default.nix -------------------------------------------------------------------------------- /jupyter/kernel/ir/builder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/ir/builder.R -------------------------------------------------------------------------------- /jupyter/kernel/ir/builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/ir/builder.sh -------------------------------------------------------------------------------- /jupyter/kernel/ir/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/jupyter/kernel/ir/default.nix -------------------------------------------------------------------------------- /nixpkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/nixpkgs/default.nix -------------------------------------------------------------------------------- /nixpkgs/jdupes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/nixpkgs/jdupes.nix -------------------------------------------------------------------------------- /nixpkgs/overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/nixpkgs/overlay.nix -------------------------------------------------------------------------------- /nixpkgs/sssd/nss-client.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/nixpkgs/sssd/nss-client.nix -------------------------------------------------------------------------------- /nixpkgs/stdenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/nixpkgs/stdenv.nix -------------------------------------------------------------------------------- /packs/capture.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -ue 2 | "$@" > $out 3 | -------------------------------------------------------------------------------- /packs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/packs/default.nix -------------------------------------------------------------------------------- /packs/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/packs/lib.nix -------------------------------------------------------------------------------- /packs/lmodCache.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/packs/lmodCache.nix -------------------------------------------------------------------------------- /packs/lmodCache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/packs/lmodCache.sh -------------------------------------------------------------------------------- /patch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/patch/default.nix -------------------------------------------------------------------------------- /patch/nix-ignore-fsea.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/patch/nix-ignore-fsea.patch -------------------------------------------------------------------------------- /patch/openssh-keysign-setuid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/patch/openssh-keysign-setuid.patch -------------------------------------------------------------------------------- /patch/shadow-nosuid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/patch/shadow-nosuid.patch -------------------------------------------------------------------------------- /spack/bin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/bin.nix -------------------------------------------------------------------------------- /spack/bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/bin.sh -------------------------------------------------------------------------------- /spack/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/builder.py -------------------------------------------------------------------------------- /spack/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/cache.py -------------------------------------------------------------------------------- /spack/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/config.nix -------------------------------------------------------------------------------- /spack/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/config.sh -------------------------------------------------------------------------------- /spack/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/generate.py -------------------------------------------------------------------------------- /spack/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/install.sh -------------------------------------------------------------------------------- /spack/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/modules.nix -------------------------------------------------------------------------------- /spack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/modules.py -------------------------------------------------------------------------------- /spack/nixpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/nixpack.py -------------------------------------------------------------------------------- /spack/repo/packages/libass/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/libass/package.py -------------------------------------------------------------------------------- /spack/repo/packages/mplayer/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/mplayer/package.py -------------------------------------------------------------------------------- /spack/repo/packages/mpv/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/mpv/package.py -------------------------------------------------------------------------------- /spack/repo/packages/mupdf/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/mupdf/package.py -------------------------------------------------------------------------------- /spack/repo/packages/wecall/cmake-rhel-regex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/wecall/cmake-rhel-regex.patch -------------------------------------------------------------------------------- /spack/repo/packages/wecall/ncurses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/wecall/ncurses.patch -------------------------------------------------------------------------------- /spack/repo/packages/wecall/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/wecall/package.py -------------------------------------------------------------------------------- /spack/repo/packages/xscreensaver/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/spack/repo/packages/xscreensaver/package.py -------------------------------------------------------------------------------- /spack/repo/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: nixpack 3 | -------------------------------------------------------------------------------- /view/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/view/builder.py -------------------------------------------------------------------------------- /view/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/nixpack/HEAD/view/default.nix --------------------------------------------------------------------------------