2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-02-11 07:35:05 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "massren";
|
2018-02-11 07:35:05 +00:00
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/laurent22/massren";
|
2018-02-11 07:35:05 +00:00
|
|
|
maintainers = with maintainers; [ andrew-d ];
|
|
|
|
};
|
|
|
|
}
|