Skip to content

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manveru committed Aug 31, 2016
1 parent ed8ba68 commit 737291e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,21 @@ stdenv.mkDerivation {
--prefix PATH : "${nix-prefetch-git.out}/bin" \
--set GEM_PATH "${bundler}/${bundler.ruby.gemPath}"
'';

nativeBuildInputs = [makeWrapper];

meta = {
inherit version;
description = "Creates Nix packages from Gemfiles";
longDescription = ''
This is a tool that converts Gemfile.lock files to nix expressions.
The output is then usable by the bundlerEnv derivation to list all the
dependencies of a ruby package.
'';
homepage = "https://github.com/manveru/bundix";
license = "MIT";
maintainers = with lib.maintainers; [ manveru zimbatm ];
platforms = lib.platforms.all;
};
}
2 changes: 1 addition & 1 deletion lib/bundix/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Bundix
VERSION = '2.1.1'
VERSION = '2.2.0'
end

0 comments on commit 737291e

Please sign in to comment.