lol

cpsm: init at 565ab53a66fa52c46d80adf6981b07f4bdffcb1d

+36 -1
+23 -1
pkgs/misc/vim-plugins/default.nix
··· 2 2 { fetchurl, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip 3 3 , which, fetchgit, llvmPackages 4 4 , xkb_switch, rustracerd, fzf 5 - , python3 5 + , python3, boost, icu 6 6 , Cocoa ? null 7 7 }: 8 8 ··· 2112 2112 }; 2113 2113 dependencies = []; 2114 2114 2115 + }; 2116 + 2117 + cpsm = buildVimPluginFrom2Nix { # created by nix#NixDerivation 2118 + name = "cpsm-2016-09-21"; 2119 + src = fetchgit { 2120 + url = "git://github.com/nixprime/cpsm"; 2121 + rev = "565ab53a66fa52c46d80adf6981b07f4bdffcb1d"; 2122 + sha256 = "125gcnqrg2276sp715q924cxwjxwsv3j4m0n1zj17w9srnpn4r1k"; 2123 + }; 2124 + dependencies = []; 2125 + buildInputs = [ 2126 + python3 2127 + stdenv 2128 + cmake 2129 + boost 2130 + icu 2131 + ]; 2132 + buildPhase = '' 2133 + patchShebangs . 2134 + export PY3=ON 2135 + ./install.sh 2136 + ''; 2115 2137 }; 2116 2138 }
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 171 171 "github:jiangmiao/auto-pairs" 172 172 "github:editorconfig/editorconfig-vim" 173 173 "github:heavenshell/vim-jsdoc" 174 + "github:nixprime/cpsm"
+12
pkgs/misc/vim-plugins/vim2nix/additional-nix-code/cpsm
··· 1 + buildInputs = [ 2 + python3 3 + stdenv 4 + cmake 5 + boost 6 + icu 7 + ]; 8 + buildPhase = '' 9 + patchShebangs . 10 + export PY3=ON 11 + ./install.sh 12 + '';