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

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

23 lines
588 B
Nix
Raw Normal View History

2021-09-14 01:50:07 +02:00
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "nomino";
2022-07-28 09:47:10 +02:00
version = "1.2.1";
2021-09-14 01:50:07 +02:00
src = fetchFromGitHub {
owner = "yaa110";
repo = pname;
rev = version;
2022-07-28 09:47:10 +02:00
sha256 = "sha256-+bnEuSro3/t9aXu2WpwsaqHqB+poSXsVbna01a7pnKo=";
2021-09-14 01:50:07 +02:00
};
2022-07-28 09:47:10 +02:00
cargoSha256 = "sha256-IKsA8btCmKnZfRIwS4QdxJMi1As6SNbTI7ibOL7M+5U=";
2021-09-14 01:50:07 +02:00
meta = with lib; {
description = "Batch rename utility for developers";
homepage = "https://github.com/yaa110/nomino";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}