mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
scooter: init at 0.1.1
This commit is contained in:
parent
1639c2db6c
commit
66e0880262
28
pkgs/by-name/sc/scooter/package.nix
Normal file
28
pkgs/by-name/sc/scooter/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user