nixpkgs/pkgs/applications/editors/eclipse/plugins/installers/zip.nix

10 lines
177 B
Nix
Raw Normal View History

{stdenv, unzip, plugin}:
let {
body =
stdenv.mkDerivation {
name = "eclipse-zip-plugin-installer";
builder = ./builder.sh;
inherit plugin unzip;
};
}