mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 15:43:39 +00:00
scooter: init at 0.1.1 (#356310)
This commit is contained in:
commit
8e98f74f75
@ -7141,6 +7141,12 @@
|
|||||||
githubId = 628359;
|
githubId = 628359;
|
||||||
name = "Felix Singer";
|
name = "Felix Singer";
|
||||||
};
|
};
|
||||||
|
felixzieger = {
|
||||||
|
name = "Felix Zieger";
|
||||||
|
github = "felixzieger";
|
||||||
|
githubId = 67903933;
|
||||||
|
email = "nixpkgs@felixzieger.de";
|
||||||
|
};
|
||||||
felschr = {
|
felschr = {
|
||||||
email = "dev@felschr.com";
|
email = "dev@felschr.com";
|
||||||
matrix = "@felschr:matrix.org";
|
matrix = "@felschr:matrix.org";
|
||||||
|
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