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