tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
cpsm: init at 565ab53a66fa52c46d80adf6981b07f4bdffcb1d
Carl Sverre
9 years ago
a7500ca1
b69f568f
+36
-1
3 changed files
expand all
collapse all
unified
split
pkgs
misc
vim-plugins
default.nix
vim-plugin-names
vim2nix
additional-nix-code
cpsm
+23
-1
pkgs/misc/vim-plugins/default.nix
reviewed
···
2
2
{ fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip
3
3
, which, fetchgit, llvmPackages
4
4
, xkb_switch, rustracerd, fzf
5
5
-
, python3
5
5
+
, python3, boost, icu
6
6
, Cocoa ? null
7
7
}:
8
8
···
2112
2112
};
2113
2113
dependencies = [];
2114
2114
2115
2115
+
};
2116
2116
+
2117
2117
+
cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation
2118
2118
+
name = "cpsm-2016-09-21";
2119
2119
+
src = fetchgit {
2120
2120
+
url = "git://github.com/nixprime/cpsm";
2121
2121
+
rev = "565ab53a66fa52c46d80adf6981b07f4bdffcb1d";
2122
2122
+
sha256 = "125gcnqrg2276sp715q924cxwjxwsv3j4m0n1zj17w9srnpn4r1k";
2123
2123
+
};
2124
2124
+
dependencies = [];
2125
2125
+
buildInputs = [
2126
2126
+
python3
2127
2127
+
stdenv
2128
2128
+
cmake
2129
2129
+
boost
2130
2130
+
icu
2131
2131
+
];
2132
2132
+
buildPhase = ''
2133
2133
+
patchShebangs .
2134
2134
+
export PY3=ON
2135
2135
+
./install.sh
2136
2136
+
'';
2115
2137
};
2116
2138
}
+1
pkgs/misc/vim-plugins/vim-plugin-names
reviewed
···
171
171
"github:jiangmiao/auto-pairs"
172
172
"github:editorconfig/editorconfig-vim"
173
173
"github:heavenshell/vim-jsdoc"
174
174
+
"github:nixprime/cpsm"
+12
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
reviewed
···
1
1
+
buildInputs = [
2
2
+
python3
3
3
+
stdenv
4
4
+
cmake
5
5
+
boost
6
6
+
icu
7
7
+
];
8
8
+
buildPhase = ''
9
9
+
patchShebangs .
10
10
+
export PY3=ON
11
11
+
./install.sh
12
12
+
'';