This commit is contained in:
Charles Strahan 2014-11-18 04:07:30 +00:00
parent 973794b24a
commit e51afe5e7c
2 changed files with 6 additions and 2 deletions

View File

@ -73,7 +73,7 @@ rec {
};
hub = import ./hub {
inherit (rubyPackages) rake;
inherit buildRubyGem;
inherit stdenv fetchurl groff makeWrapper;
};

View File

@ -1,5 +1,9 @@
{ stdenv, fetchurl, groff, rake, makeWrapper }:
{ stdenv, fetchurl, groff, buildRubyGem, makeWrapper }:
let rake = buildRubyGem {
name = "rake-10.3.2";
sha256 = "0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m";
}; in
stdenv.mkDerivation rec {
name = "hub-${version}";
version = "1.12.2";