mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
16 lines
409 B
Nix
16 lines
409 B
Nix
{ nixGL, symlinkJoin, makeWrapper, writeScriptBin, cool-retro-term }:
|
|
symlinkJoin {
|
|
name = "cool-retro-term";
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
paths = [
|
|
(
|
|
writeScriptBin "cool-retro-term" ''
|
|
writeScriptBin "cool-retro-term"
|
|
#!/bin/sh
|
|
exec ${nixGL.nixGLIntel}/bin/nixGLIntel ${cool-retro-term}/bin/cool-retro-term "$@"
|
|
''
|
|
)
|
|
cool-retro-term
|
|
];
|
|
}
|