Skip to content

Commit 3477f56

Browse files
committedJun 18, 2017
vimPlugins.command-t: fix ruby build
1 parent abc374f commit 3477f56

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed
 

‎pkgs/misc/vim-plugins/default.nix

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
, python3, boost, icu
66
, ycmd
77
, pythonPackages, python3Packages
8-
, Cocoa ? null
8+
, Cocoa ? null, git
99
}:
1010

1111
let
@@ -1775,11 +1775,10 @@ rec {
17751775
sha256 = "15wil973sqfgvix9li15qk49kv9l3rn8zqis2cl71k6xh1xvd9ff";
17761776
};
17771777
dependencies = [];
1778-
buildInputs = [ perl ruby ];
1778+
buildInputs = [ perl ruby git ];
17791779
buildPhase = ''
17801780
pushd ruby/command-t
1781-
ruby extconf.rb
1782-
make
1781+
gem build ./command-t.gemspec
17831782
popd
17841783
'';
17851784
};
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
buildInputs = [ perl ruby ];
22
buildPhase = ''
33
pushd ruby/command-t
4-
ruby extconf.rb
5-
make
4+
gem build command-t.gemspec
65
popd
76
'';

0 commit comments

Comments
 (0)
Please sign in to comment.