1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{
lib,
fetchFromGitHub,
# sniprun-bin
rustPlatform,
makeWrapper,
bashInteractive,
coreutils,
curl,
gnugrep,
gnused,
procps,
# sniprun
vimUtils,
replaceVars,
nix-update-script,
}:
let
version = "1.3.17";
src = fetchFromGitHub {
owner = "michaelb";
repo = "sniprun";
tag = "v${version}";
hash = "sha256-o8U3GXg61dfEzQxrs9zCgRDWonhr628aSPd/l+HxS70=";
};
sniprun-bin = rustPlatform.buildRustPackage {
pname = "sniprun-bin";
inherit version src;
useFetchCargoVendor = true;
cargoHash = "sha256-HLPTt0JCmCM4SRmP8o435ilM1yxoxpAnf8hg3+8C54I=";
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram $out/bin/sniprun \
--prefix PATH ${
lib.makeBinPath [
bashInteractive
coreutils
curl
gnugrep
gnused
procps
]
}
'';
doCheck = false;
meta.mainProgram = "sniprun";
};
in
vimUtils.buildVimPlugin {
pname = "sniprun";
inherit version src;
patches = [
(replaceVars ./fix-paths.patch {
sniprun = lib.getExe sniprun-bin;
})
];
propagatedBuildInputs = [ sniprun-bin ];
passthru = {
updateScript = nix-update-script {
attrPath = "vimPlugins.sniprun.sniprun-bin";
};
# needed for the update script
inherit sniprun-bin;
};
meta = {
homepage = "https://github.com/michaelb/sniprun/";
changelog = "https://github.com/michaelb/sniprun/blob/v${version}/CHANGELOG.md";
maintainers = with lib.maintainers; [ GaetanLepage ];
license = lib.licenses.mit;
};
}
|