mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
cpsm: init at 565ab53a66fa52c46d80adf6981b07f4bdffcb1d
This commit is contained in:
parent
b69f568f4c
commit
a7500ca12b
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
@ -171,3 +171,4 @@
|
||||
"github:jiangmiao/auto-pairs"
|
||||
"github:editorconfig/editorconfig-vim"
|
||||
"github:heavenshell/vim-jsdoc"
|
||||
"github:nixprime/cpsm"
|
||||
|
12
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
Normal file
12
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
Normal file
@ -0,0 +1,12 @@
|
||||
buildInputs = [
|
||||
python3
|
||||
stdenv
|
||||
cmake
|
||||
boost
|
||||
icu
|
||||
];
|
||||
buildPhase = ''
|
||||
patchShebangs .
|
||||
export PY3=ON
|
||||
./install.sh
|
||||
'';
|
Loading…
Reference in New Issue
Block a user