mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
massren: init at 1.5.4
This commit is contained in:
parent
fb8379cc76
commit
504321761a
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/misc/massren/default.nix
Normal file
22
pkgs/tools/misc/massren/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "massren-${version}";
|
||||
version = "1.5.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "laurent22";
|
||||
repo = "massren";
|
||||
rev = "v${version}";
|
||||
sha256 = "1bn6qy30kpxi3rkr3bplsc80xnhj0hgfl0qaczbg3zmykfmsl3bl";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/laurent22/massren";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easily rename multiple files using your text editor";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/laurent22/massren;
|
||||
maintainers = with maintainers; [ andrew-d ];
|
||||
};
|
||||
}
|
|
@ -1250,6 +1250,8 @@ with pkgs;
|
|||
|
||||
masscan = callPackage ../tools/security/masscan { };
|
||||
|
||||
massren = callPackage ../tools/misc/massren { };
|
||||
|
||||
meritous = callPackage ../games/meritous { };
|
||||
|
||||
meson = callPackage ../development/tools/build-managers/meson { };
|
||||
|
|
Loading…
Reference in a new issue