Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1d924f0354ff
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dde87455edde
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jun 13, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dde8745 View commit details
Showing with 12 additions and 7 deletions.
  1. +3 −3 pkgs/tools/security/bundler-audit/Gemfile.lock
  2. +1 −0 pkgs/tools/security/bundler-audit/default.nix
  3. +8 −4 pkgs/tools/security/bundler-audit/gemset.nix
6 changes: 3 additions & 3 deletions pkgs/tools/security/bundler-audit/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
GEM
remote: https://rubygems.org/
specs:
bundler-audit (0.6.1)
bundler-audit (0.7.0.1)
bundler (>= 1.2.0, < 3)
thor (~> 0.18)
thor (0.20.3)
thor (>= 0.18, < 2)
thor (1.0.1)

PLATFORMS
ruby
1 change: 1 addition & 0 deletions pkgs/tools/security/bundler-audit/default.nix
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ bundlerEnv rec {
- Does not require a network connection.
'';
homepage = "https://github.com/rubysec/bundler-audit";
changelog = "https://github.com/rubysec/bundler-audit/blob/v${version}/ChangeLog.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ primeos nicknovitski ];
platforms = platforms.unix;
12 changes: 8 additions & 4 deletions pkgs/tools/security/bundler-audit/gemset.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{
bundler-audit = {
dependencies = ["thor"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0pm22xpn3xyymsainixnrk8v3l3xi9bzwkjkspx00cfzp84xvxbq";
sha256 = "04l9rs56rlvihbr2ybkrigjajgd3swa98lxvmdl8iylj1g5m7n0j";
type = "gem";
};
version = "0.6.1";
version = "0.7.0.1";
};
thor = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29";
sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
type = "gem";
};
version = "0.20.3";
version = "1.0.1";
};
}