mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
1862813d11
This is done with the following bash script: ``` #!/usr/bin/env bash process_line() { local filename=${1%:} if [[ $4 =~ \"(.*)\"\; ]]; then local sha256="${BASH_REMATCH[1]}" fi [[ -z $sha256 ]] && return 0 local hash=$(nix hash to-sri --type sha256 $sha256) echo "Processing: $filename" echo " $sha256 => $hash" sed -i "s|cargoSha256 = \"$sha256\"|cargoHash = \"$hash\"|" $filename } # split output by line grep -r 'cargoSha256 = ' . | while IFS= read -r line; do # split them further by space read -r -a parts <<< "$line" process_line "${parts[@]}" done ```
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub, llvmPackages }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "parinfer-rust";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eraserhd";
|
|
repo = "parinfer-rust";
|
|
rev = "v${version}";
|
|
sha256 = "0hj5in5h7pj72m4ag80ing513fh65q8xlsf341qzm3vmxm3y3jgd";
|
|
};
|
|
|
|
cargoHash = "sha256-PW9LIQamQfusaijyJ2R9xe29LhM0GNf9BdxI9vkjVdE=";
|
|
|
|
nativeBuildInputs = [ llvmPackages.clang rustPlatform.bindgenHook ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/kak/autoload/plugins
|
|
cp rc/parinfer.kak $out/share/kak/autoload/plugins/
|
|
|
|
rtpPath=$out/plugin
|
|
mkdir -p $rtpPath
|
|
sed "s,let s:libdir = .*,let s:libdir = '${placeholder "out"}/lib'," \
|
|
plugin/parinfer.vim > $rtpPath/parinfer.vim
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Infer parentheses for Clojure, Lisp, and Scheme";
|
|
mainProgram = "parinfer-rust";
|
|
homepage = "https://github.com/eraserhd/parinfer-rust";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ eraserhd ];
|
|
};
|
|
}
|