7 lines
No EOL
134 B
Nix
7 lines
No EOL
134 B
Nix
{ pkgs }: binPath: pkgs.stdenvNoCC.mkDerivation {
|
|
src = binPath;
|
|
buildPhase = ''
|
|
mkdir -p $out
|
|
cp $src $out/plugin
|
|
'';
|
|
} |