Skip to content

Commit

Permalink
bundler: add meta
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyroussel committed Sep 1, 2022
1 parent 6db2d6e commit d055a2e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/development/ruby-modules/bundler/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ buildRubyGem, ruby, writeScript }:
{ lib, buildRubyGem, ruby, writeScript }:

buildRubyGem rec {
inherit ruby;
Expand All @@ -21,4 +21,11 @@ buildRubyGem rec {
postFixup = ''
sed -i -e "s/activate_bin_path/bin_path/g" $out/bin/bundle
'';

meta = with lib; {
description = "Manage your Ruby application's gem dependencies";
homepage = "https://bundler.io";
license = licenses.mit;
maintainers = with maintainers; [anthonyroussel];
};
}

0 comments on commit d055a2e

Please sign in to comment.