mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #660 from lovek323/vim-coffee-script
vim-coffee-script: add expression
This commit is contained in:
commit
9177be20b6
1 changed files with 22 additions and 0 deletions
|
@ -144,5 +144,27 @@ in
|
||||||
cp -R syntax_checkers "$out/vim-plugins"
|
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 a new issue