summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby/bundix/default.nix
blob: b5a49043c60b0b0042d9c0ead4e9b4c77239a419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ ruby, fetchgit, buildRubyGem, bundler }:

let
  thor = buildRubyGem {
    gemName = "thor";
    version = "0.19.1";
    type = "gem";
    sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z";
  };

in buildRubyGem {
  gemName = "bundix";
  version = "1.0.4";
  gemPath = [ thor bundler ];
  src = fetchgit {
    url = "https://github.com/cstrahan/bundix.git";
    rev = "6dcf1f71c61584f5c9b919ee9df7b0c554862076";
    sha256 = "1w17bvc9srcgr4ry81ispcj35g9kxihbyknmqp8rnd4h5090b7b2";
  };
}