ks: add completions for bash and zsh (#364049)
[NixPkgs.git] / pkgs / tools / text / ruplacer / default.nix
blob5f7d766089a2ca068c9668fa7fc25eb14bb34ac2
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "ruplacer";
9   version = "0.10.0";
11   src = fetchFromGitHub {
12     owner = "TankerHQ";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-Zvbb9pQpxbJZi0qcDU6f2jEgavl9cA7gIYU7NRXZ9fc=";
16   };
18   cargoHash = "sha256-vdq2nEFhvteQEqEZNbSegivvkU6cTxSmZLc6oaxLkwY=";
20   meta = {
21     description = "Find and replace text in source files";
22     mainProgram = "ruplacer";
23     homepage = "https://github.com/TankerHQ/ruplacer";
24     license = lib.licenses.bsd3;
25     maintainers = with lib.maintainers; [ Br1ght0ne ];
26   };