biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / rust-petname / default.nix
blob8879dd282cfaf51776194b44e70087af954537e5
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rust-petname";
5   version = "2.0.2";
7   src = fetchCrate {
8     inherit version;
9     crateName = "petname";
10     hash = "sha256-KP+GdGlwLHcKE8nAmFr2wHbt5RD9Ptpiz1X5HgJ6BgU=";
11   };
13   cargoHash = "sha256-R1Xahr9R4G8Tr2cGRJ2oydVaLohPz2VM6tnbtE8Hysk=";
15   meta = with lib; {
16     description = "Generate human readable random names";
17     homepage = "https://github.com/allenap/rust-petname";
18     license = licenses.asl20;
19     maintainers = with maintainers; [ figsoda ];
20     mainProgram = "petname";
21   };