forked from hacc/haccfiles
16 lines
219 B
Nix
16 lines
219 B
Nix
|
{ stdenvNoCC, gauche }:
|
||
|
|
||
|
stdenvNoCC.mkDerivation {
|
||
|
name = "hacc-utility-scripts";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
buildInputs = [ gauche ];
|
||
|
|
||
|
installPhase = ''
|
||
|
chmod +x *.scm
|
||
|
mkdir -p $out/bin
|
||
|
cp *.scm $out/bin
|
||
|
'';
|
||
|
}
|