nixpkgs/pkgs/development/tools/parinfer-rust/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, llvmPackages }:
2019-05-05 15:34:19 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "parinfer-rust";
2020-02-25 04:29:40 +00:00
version = "0.4.3";
2019-05-05 15:34:19 +00:00
src = fetchFromGitHub {
owner = "eraserhd";
repo = "parinfer-rust";
rev = "v${version}";
2020-02-25 04:29:40 +00:00
sha256 = "0hj5in5h7pj72m4ag80ing513fh65q8xlsf341qzm3vmxm3y3jgd";
2019-05-05 15:34:19 +00:00
};
cargoSha256 = "1lam4gwzcj6w0pyxf61l2cpbvvf5gmj2gwi8dangnhd60qhlnvrx";
2020-01-04 23:12:36 +00:00
2020-03-29 07:57:24 +00:00
nativeBuildInputs = [ llvmPackages.clang ];
buildInputs = [ llvmPackages.libclang ];
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
2019-05-05 15:34:19 +00:00
postInstall = ''
mkdir -p $out/share/kak/autoload/plugins
cp rc/parinfer.kak $out/share/kak/autoload/plugins/
2020-01-04 23:12:36 +00:00
rtpPath=$out/share/vim-plugins/parinfer-rust
mkdir -p $rtpPath/plugin
sed "s,let s:libdir = .*,let s:libdir = '${placeholder "out"}/lib'," \
plugin/parinfer.vim >$rtpPath/plugin/parinfer.vim
2019-05-05 15:34:19 +00:00
'';
meta = with lib; {
description = "Infer parentheses for Clojure, Lisp, and Scheme";
2019-05-05 15:34:19 +00:00
homepage = "https://github.com/eraserhd/parinfer-rust";
license = licenses.isc;
maintainers = with maintainers; [ eraserhd ];
};
}