
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Generate nix expressions to fetch bower dependencies.
usage: bower2nix [-h] [-v] [INPUT] [OUTPUT]
Generate nix expressions to fetch bower dependencies
Positional arguments:
INPUT The bower.json file (default: ./bower.json)
OUTPUT The output file to generate (default: stdout)
Optional arguments:
-h, --help Show this help message and exit.
-v, --version Show program's version number and exit.
The easiest way to install bower2nix
is not to install it at
all. Just start a nix-shell
:
nix-shell -p nodePackages.bower2nix
If you have a bower.json
file like this:
{
"name": "bower-test",
"dependencies": {
"angular": "~1.4.0"
}
}
Then running bower2nix bower.json bower-generated.nix
will generate
something like this:
# bower-generated.nix
{ fetchbower, buildEnv }:
buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [
(fetchbower "angular" "1.4.9" "~1.4.0" "0a2754zsxv9dngpg08gkr9fdwv75y986av12q4drf1sm8p8cj6bs")
]; }
The resulting derivation is a union of all the downloaded bower packages (and their dependencies).
Usually, you want a bower_components
directory. This can be
generated with bower install
by pointing it at the environment of
downloaded bower packages.
bowerComponents = pkgs.buildBowerComponents {
name = "bower-test";
generated = ./bower-generated.nix;
src = mySources;
};
The resulting derivation contains a bower_components
directory which
is ready to use in your project's build process.
There is a small example within the example
subdirectory of this repo.
For more information, see the Nixpkgs manual.
For testing purposes, a single package can be downloaded. For example:
fetch-bower angular '~1.4.0' '1.4.8'
. If no output directory is
provided, the package attributes will be shown, and the package
contents discarded.
usage: fetch-bower [-h] [-v] [--out DIR] NAME [TARGET] [VERSION]
Fetch a single bower dependency
Positional arguments:
NAME Package name
TARGET Target version range
VERSION Exact package version
Optional arguments:
-h, --help Show this help message and exit.
-v, --version Show program's version number and exit.
--out DIR, -o DIR Output directory
bower2nix
requires Node.js 4.x or higher. The latest version of
bower2nix
is in the 16.09 release of nixpkgs/NixOS, so use that.
FAQs
Generate nix expressions to fetch bower dependencies
The npm package bower2nix receives a total of 0 weekly downloads. As such, bower2nix popularity was classified as not popular.
We found that bower2nix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.