aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/massren/default.nix
blob: 6d198a35605dd76a54680335c89d0d0e9b008791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "massren";
  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 ];
  };
}