nixpkgs/pkgs/applications/editors/eclipse/plugins/installers/zip.nix
Martin Bravenboer 06b5fa3519 Added support for Eclipse plugins with custom installers.
svn path=/nixpkgs/trunk/; revision=4907
2006-02-25 00:44:02 +00:00

10 lines
177 B
Nix

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