Merge pull request #20681 from carlsverre/add/cpsm

cpsm: init at 565ab53a66fa52c46d80adf6981b07f4bdffcb1d
This commit is contained in:
Arseniy Seroka 2016-11-24 22:52:15 +04:00 committed by GitHub
commit c8e014e5a6
3 changed files with 36 additions and 1 deletions

View file

@ -2,7 +2,7 @@
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
, which, fetchgit, llvmPackages
, xkb_switch, rustracerd, fzf
, python3
, python3, boost, icu
, Cocoa ? null
}:
@ -2113,4 +2113,26 @@ rec {
dependencies = [];
};
cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "cpsm-2016-09-21";
src = fetchgit {
url = "git://github.com/nixprime/cpsm";
rev = "565ab53a66fa52c46d80adf6981b07f4bdffcb1d";
sha256 = "125gcnqrg2276sp715q924cxwjxwsv3j4m0n1zj17w9srnpn4r1k";
};
dependencies = [];
buildInputs = [
python3
stdenv
cmake
boost
icu
];
buildPhase = ''
patchShebangs .
export PY3=ON
./install.sh
'';
};
}

View file

@ -171,3 +171,4 @@
"github:jiangmiao/auto-pairs"
"github:editorconfig/editorconfig-vim"
"github:heavenshell/vim-jsdoc"
"github:nixprime/cpsm"

View file

@ -0,0 +1,12 @@
buildInputs = [
python3
stdenv
cmake
boost
icu
];
buildPhase = ''
patchShebangs .
export PY3=ON
./install.sh
'';