Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

massren: init at 1.5.4

authored by Andrew Dunham and committed by Bjørn Forsman 50432176 fb8379cc

+24
+22
pkgs/tools/misc/massren/default.nix
··· 1 + { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "massren-${version}"; 5 + version = "1.5.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "laurent22"; 9 + repo = "massren"; 10 + rev = "v${version}"; 11 + sha256 = "1bn6qy30kpxi3rkr3bplsc80xnhj0hgfl0qaczbg3zmykfmsl3bl"; 12 + }; 13 + 14 + goPackagePath = "github.com/laurent22/massren"; 15 + 16 + meta = with lib; { 17 + description = "Easily rename multiple files using your text editor"; 18 + license = licenses.mit; 19 + homepage = https://github.com/laurent22/massren; 20 + maintainers = with maintainers; [ andrew-d ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 1250 1250 1251 1251 masscan = callPackage ../tools/security/masscan { }; 1252 1252 1253 + massren = callPackage ../tools/misc/massren { }; 1254 + 1253 1255 meritous = callPackage ../games/meritous { }; 1254 1256 1255 1257 meson = callPackage ../development/tools/build-managers/meson { };