1
0
Fork 0
bun-baseline/flake.nix

11 lines
328 B
Nix
Raw Permalink Normal View History

{
description =
"Incredibly fast JavaScript runtime, bundler, transpiler and package manager all in one";
inputs.nixpkgs.url = "nixpkgs";
outputs = { self, nixpkgs }: {
packages = nixpkgs.lib.mapAttrs
(system: pkgs: { default = pkgs.callPackage ./default.nix { }; })
nixpkgs.legacyPackages;
};
}