10 lines
177 B
Nix
10 lines
177 B
Nix
|
{stdenv, unzip, plugin}:
|
||
|
|
||
|
let {
|
||
|
body =
|
||
|
stdenv.mkDerivation {
|
||
|
name = "eclipse-zip-plugin-installer";
|
||
|
builder = ./builder.sh;
|
||
|
inherit plugin unzip;
|
||
|
};
|
||
|
}
|