1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
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;
};
}