nixpkgs/pkgs/tools/misc/nomino/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
660 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2021-09-13 23:50:07 +00:00
rustPlatform.buildRustPackage rec {
pname = "nomino";
2023-10-30 13:05:35 +00:00
version = "1.3.3";
2021-09-13 23:50:07 +00:00
src = fetchFromGitHub {
owner = "yaa110";
repo = pname;
rev = version;
2023-10-30 13:05:35 +00:00
hash = "sha256-XT8+mwfDFsBVEcpttus1KeIS+4sKqJMJTwqYI3LfW5k=";
2021-09-13 23:50:07 +00:00
};
2023-10-30 13:05:35 +00:00
cargoHash = "sha256-KpjGwqjVORyxXJbMi2Ok7s6gRmM/aJRTsPtu/0PgGr8=";
2021-09-13 23:50:07 +00:00
meta = with lib; {
description = "Batch rename utility for developers";
homepage = "https://github.com/yaa110/nomino";
changelog = "https://github.com/yaa110/nomino/releases/tag/${src.rev}";
2021-09-13 23:50:07 +00:00
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}