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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
997 B
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
2023-05-26 23:44:51 +00:00
nativeBuildInputs = [ llvmPackages.clang rustPlatform.bindgenHook ];
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
2021-09-17 13:16:37 +00:00
rtpPath=$out/plugin
mkdir -p $rtpPath
2020-01-04 23:12:36 +00:00
sed "s,let s:libdir = .*,let s:libdir = '${placeholder "out"}/lib'," \
2021-09-17 13:16:37 +00:00
plugin/parinfer.vim > $rtpPath/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 ];
};
}