about summary refs log tree commit diff
path: root/pkgs/tools/misc/massren/default.nix
blob: e2ff4868c9eac8e83c058091d51a2e7e9bce7f90 (plain) (blame)
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 {
  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 ];
  };
}