2021-01-25 08:26:54 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, llvmPackages }:
|
2019-05-05 16:34:19 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "parinfer-rust";
|
2020-02-25 04:29:40 +00:00
|
|
|
version = "0.4.3";
|
2019-05-05 16:34:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "eraserhd";
|
|
|
|
repo = "parinfer-rust";
|
|
|
|
rev = "v${version}";
|
2020-02-25 04:29:40 +00:00
|
|
|
sha256 = "0hj5in5h7pj72m4ag80ing513fh65q8xlsf341qzm3vmxm3y3jgd";
|
2019-05-05 16:34:19 +01:00
|
|
|
};
|
|
|
|
|
2020-02-25 04:29:40 +00:00
|
|
|
cargoSha256 = "16ylk125p368mcz8nandmfqlygrqjlf8mqaxlbpixqga378saidl";
|
2020-01-04 23:12:36 +00:00
|
|
|
|
2020-03-29 08:57:24 +01:00
|
|
|
nativeBuildInputs = [ llvmPackages.clang ];
|
|
|
|
buildInputs = [ llvmPackages.libclang ];
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 09:23:57 +01:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2019-05-05 16:34:19 +01: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 16:34:19 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Infer parentheses for Clojure, Lisp, and Scheme";
|
2019-05-05 16:34:19 +01:00
|
|
|
homepage = "https://github.com/eraserhd/parinfer-rust";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ eraserhd ];
|
|
|
|
};
|
|
|
|
}
|