nixos/packages/lmod.nix

15 lines
300 B
Nix
Raw Normal View History

2024-02-19 17:25:27 +08:00
{
stdenv, src,
tcl,
procps, bc, lua
}:
stdenv.mkDerivation
{
name = "lmod";
inherit src;
buildInputs = [ tcl ];
nativeBuildInputs = [ procps bc (lua.withPackages (ps: with ps; [ luaposix ])) ];
2024-02-21 11:29:47 +08:00
configurePhase = ''./configure --prefix=$out/share'';
2024-02-19 17:25:27 +08:00
postUnpack = "patchShebangs .";
}