13 lines
323 B
Nix
13 lines
323 B
Nix
inputs: final: prev: {
|
|
nest = prev.nest.overrideAttrs (old: {
|
|
postPatch = old.postPatch + ''
|
|
sed -e 's#-L$prefix/#-L#g' -i bin/nest-config.in
|
|
'';
|
|
});
|
|
nest-mpi = prev.nest-mpi.overrideAttrs (old: {
|
|
postPatch = old.postPatch + ''
|
|
sed -e 's#-L$prefix/#-L#g' -i bin/nest-config.in
|
|
'';
|
|
});
|
|
}
|