mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
vim-coffee-script: add expression
This commit is contained in:
parent
b38308553b
commit
60fd718856
@ -144,5 +144,27 @@ in
|
||||
cp -R syntax_checkers "$out/vim-plugins"
|
||||
'';
|
||||
};
|
||||
|
||||
coffeeScript = stdenv.mkDerivation {
|
||||
name = "vim-coffee-script-v002";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/vim-scripts/vim-coffee-script/archive/v002.tar.gz";
|
||||
sha256 = "1xln6i6jbbihcyp5bsdylr2146y41hmp2xf7wi001g2ymj1zdsc0";
|
||||
};
|
||||
|
||||
buildPhase = "";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/vim-plugins"
|
||||
cp -R after "$out/vim-plugins"
|
||||
cp -R compiler "$out/vim-plugins"
|
||||
cp -R doc "$out/vim-plugins"
|
||||
cp -R ftdetect "$out/vim-plugins"
|
||||
cp -R ftplugin "$out/vim-plugins"
|
||||
cp -R indent "$out/vim-plugins"
|
||||
cp -R syntax "$out/vim-plugins"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user