Merge pull request #225786 from Leixb/sniprun

vimPlugins.sniprun: 1.2.13 -> 1.3.0
This commit is contained in:
figsoda 2023-04-11 16:40:33 -04:00 committed by GitHub
commit 8eac32eebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -852,18 +852,18 @@ self: super: {
sniprun =
let
version = "1.2.13";
version = "1.3.0";
src = fetchFromGitHub {
owner = "michaelb";
repo = "sniprun";
rev = "v${version}";
hash = "sha256-VDLBktZChRgorJt/V/wuFQn/SL4yOZIElmntEQEi8Tc=";
hash = "sha256-6UDjrrEtOuB+lrCZVBO4BcZm78qwq8YbQcXAdjNbicY=";
};
sniprun-bin = rustPlatform.buildRustPackage {
pname = "sniprun-bin";
inherit version src;
cargoSha256 = "sha256-cJwmuwsC81fSH36TRU7xGzlR4pVdjsw73uRaH1uWY+0=";
cargoSha256 = "sha256-ghXYUgXqXvK9RySG/hQR5zpLsyk6L9Htb/UYgMPyWUk=";
nativeBuildInputs = [ makeWrapper ];
@ -884,6 +884,11 @@ self: super: {
substituteInPlace lua/sniprun.lua --replace '@sniprun_bin@' ${sniprun-bin}
'';
postInstall = ''
mkdir $out/doc
ln -s $out/docs/sniprun.txt $out/doc/sniprun.txt
'';
propagatedBuildInputs = [ sniprun-bin ];
};