1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #322273 from NotAShelf/serpl

serpl: init at 0.1.26
This commit is contained in:
éclairevoyant 2024-06-25 10:52:34 +00:00 committed by GitHub
commit 1a65ed93c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,41 @@
{
lib,
rustPlatform,
fetchFromGitHub,
gitUpdater,
makeWrapper,
ripgrep,
}:
let
pname = "serpl";
version = "0.1.26";
in
rustPlatform.buildRustPackage {
inherit pname version;
src = fetchFromGitHub {
owner = "yassinebridi";
repo = "serpl";
rev = version;
hash = "sha256-ppF74VI0ceB4G/RLTa1phEy+tQ34r4hOMxqlK7YeLo0=";
};
nativeBuildInputs = [ makeWrapper ];
cargoHash = "sha256-/TnuRRzeCPp8pqa/soGV0b3ZYp0cCbt3un6SjatSGp0=";
postFixup = ''
# Serpl needs ripgrep to function properly.
wrapProgram $out/bin/serpl \
--prefix PATH : "${lib.strings.makeBinPath [ ripgrep ]}"
'';
passthru.updateScript = gitUpdater { };
meta = {
description = "Simple terminal UI for search and replace, ala VS Code";
homepage = "https://github.com/yassinebridi/serpl.git";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ NotAShelf ];
mainProgram = "serpl";
};
}