3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #137708 from figsoda/nomino

nomino: init at 1.1.0
This commit is contained in:
figsoda 2021-09-14 22:47:38 -04:00 committed by GitHub
commit bef5fb44ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "nomino";
version = "1.1.0";
src = fetchFromGitHub {
owner = "yaa110";
repo = pname;
rev = version;
sha256 = "1nnyz4gkwrc2zccw0ir5kvmiyyv3r0vxys9r7j4cf0ymngal5kwp";
};
cargoSha256 = "0501w3124vkipb1rnksjaizkghw3jf3nmmmmf3zprmcaim1b4szg";
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 ];
};
}

View file

@ -7565,6 +7565,8 @@ with pkgs;
nomad-driver-podman = callPackage ../applications/networking/cluster/nomad-driver-podman { };
nomino = callPackage ../tools/misc/nomino { };
notable = callPackage ../applications/misc/notable { };
ntlmrecon = callPackage ../tools/security/ntlmrecon { };