06b5fa3519
svn path=/nixpkgs/trunk/; revision=4907
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;
|
|
};
|
|
} |