bundix icon indicating copy to clipboard operation
bundix copied to clipboard

Generates a Nix expression for your Bundler-managed application. [maintainer=@manveru]

Results 53 bundix issues
Sort by recently updated
recently updated
newest added

For private repos, use credentials provided by bundler if they exist. The credentials can be specified either via the bundler config file, or through an environment variable. For example, github...

I am trying to bundix the [sorbet](https://sorbet.org) typechecker. `Gemfile`: ``` source 'https://rubygems.org' gem 'sorbet' ``` `default.nix` (I use `callPackage` on this): ``` { bundlerApp, lib }: bundlerApp rec { pname...

## Reproduce the bug While trying to generate a `gemset.nix` with Bundix I got the following error and stacktrace: ``` Traceback (most recent call last): 30: from /nix/store/dfrk2vp3g8xj8jm9gdb8hs83vqqfzmvx-bundix-2.4.1/bin/.bundix-wrapped:18:in `' 29:...

Fixes https://github.com/nix-community/bundix/issues/57 Several gems declare platform support for `windows`, including several dependencies of a newly-generated `rails` app * debug (1.9.1) * io-console (0.7.2) * irb (1.11.1) * psych (5.1.2) *...

I opened an issue at https://github.com/bobvanderlinden/nixpkgs-ruby/issues/118 for this as well, but wasn't sure if the bundix repo was a better place to ask. --- I'm attempting to enable jemalloc with...

Inside Nixpkgs the migration to `hash` with a SRI hash was startet a while back. To be constant it would be nice if `bundix` could support this as well. ```bash...

Hey folks! I'm trying to code a nix-shell for my Jekyll project. However, I get this error: ``` error: attribute '"http_parser.rb"' missing ``` I see that http_parser.rb is my Gemfile:...

The `gemset` attribute of `bundlerEnv` should be allowed to point to an arbitrary path. Incomplete working example using flakes: ``` cat flake/builders/mkDevenvRuby.nix { system, rootPath, pkgsFor, inputs, name, args, ......

If I try to use paths for any of the options I'm supposed to be able to, I get the following error: ``` % ./bin/bundix -i --lockfile=./Gemfile.lock won't override existing...

Gemfile: ``` source 'https://rubygems.org' gem 'jekyll' gem "html-proofer" group :jekyll_plugins do gem 'RbST' gem 'jekyll-paginate' gem 'jekyll-environment-variables' end ``` flake.nix: ``` { description = "Brian's website"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; inputs.flake-utils.url...