mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
cpsm: init at 565ab53a66fa52c46d80adf6981b07f4bdffcb1d
This commit is contained in:
parent
b69f568f4c
commit
a7500ca12b
3 changed files with 36 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
|
||||||
, which, fetchgit, llvmPackages
|
, which, fetchgit, llvmPackages
|
||||||
, xkb_switch, rustracerd, fzf
|
, xkb_switch, rustracerd, fzf
|
||||||
, python3
|
, python3, boost, icu
|
||||||
, Cocoa ? null
|
, Cocoa ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -2113,4 +2113,26 @@ rec {
|
||||||
dependencies = [];
|
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:jiangmiao/auto-pairs"
|
||||||
"github:editorconfig/editorconfig-vim"
|
"github:editorconfig/editorconfig-vim"
|
||||||
"github:heavenshell/vim-jsdoc"
|
"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 a new issue