scooter: init at 0.1.1

This commit is contained in:
Felix Zieger 2024-11-16 00:09:13 +01:00
parent 1639c2db6c
commit 66e0880262

View File

@ -0,0 +1,28 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "scooter";
version = "0.1.1";
src = fetchFromGitHub {
owner = "thomasschafer";
repo = "scooter";
rev = "v${version}";
hash = "sha256-5YosLJHfrXv6ev7r0gAW5bzkSIwIBUj/Fl3+tklTKQo=";
};
cargoHash = "sha256-GY52JN07igDJVuKXR9iIqNj1obhPs70dOmU1wGy8ZrI";
meta = {
description = "Interactive find and replace in the terminal";
homepage = "https://github.com/thomasschafer/scooter";
changelog = "https://github.com/thomasschafer/scooter/commits/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ felixzieger ];
mainProgram = "scooter";
};
}