summary refs log tree commit diff
path: root/pkgs/development/ruby-modules/bundix
diff options
context:
space:
mode:
authorRobert <github@vllmrt.net>2017-06-27 11:24:16 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-06-27 10:24:16 +0100
commit107d53f40c940a6495ee96c1f22aa9200647dce7 (patch)
treeaa6b731dd7e1bb8237211b0a5714554a7495dede /pkgs/development/ruby-modules/bundix
parent71e495e10f363c91475f82683e6df3b49a5b3e7c (diff)
downloadnixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar.gz
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar.bz2
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar.lz
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar.xz
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.tar.zst
nixpkgs-107d53f40c940a6495ee96c1f22aa9200647dce7.zip
bundix: 2.2.0 -> 2.2.1 (#26894)
This fixes `fetchurl-force.nix` not being installed, which breaks
bundix for some gems.

E.g.

```
$ nix-build --argstr url https://rubygems.org/gems/nio4r-2.1.0.gem /nix/store/y6959dxal86l3alc0ryf7752prbbkzxg-bundix-2.2.0/lib/ruby/gems/2.3.0/gems/bundix-2.2.0/lib/bundix/fetchurl-force.nix
error: getting status of ‘/nix/store/y6959dxal86l3alc0ryf7752prbbkzxg-bundix-2.2.0/lib/ruby/gems/2.3.0/gems/bundix-2.2.0/lib/bundix/fetchurl-force.nix’: No such file or directory
```
Diffstat (limited to 'pkgs/development/ruby-modules/bundix')
-rw-r--r--pkgs/development/ruby-modules/bundix/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ruby-modules/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix
index 919b4b00319..8ccc6dbf306 100644
--- a/pkgs/development/ruby-modules/bundix/default.nix
+++ b/pkgs/development/ruby-modules/bundix/default.nix
@@ -5,13 +5,13 @@ buildRubyGem rec {
 
   name = "${gemName}-${version}";
   gemName = "bundix";
-  version = "2.2.0";
+  version = "2.2.1";
 
   src = fetchFromGitHub {
     owner = "manveru";
     repo = "bundix";
     rev = version;
-    sha256 = "0lnzkwxprdz73axk54y5p5xkw56n3lra9v2dsvqjfw0ab66ld0iy";
+    sha256 = "1gh90yxm4k27jdjdl3r31fcg4sk7k54jlbw1zfm1p9q3i7k8x4i7";
   };
 
   buildInputs = [bundler];