pipe-rename: init at 1.4.0
This commit is contained in:
parent
3fffe2d33c
commit
17b89a82df
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/pipe-rename/default.nix
Normal file
27
pkgs/tools/misc/pipe-rename/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, rustPlatform, fetchCrate, python3 }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pipe-rename";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-AMBdDsn3jS2dXUnEDKZILUlLHS9FIECZhc3EjxLoOZU=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-ulNyTRRFtHQ7+sRaKczLiDPIKG2TIcbbsD9x1di2ypw=";
|
||||
|
||||
checkInputs = [ python3 ];
|
||||
|
||||
preCheck = ''
|
||||
patchShebangs tests/editors/env-editor.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rename your files using your favorite text editor";
|
||||
homepage = "https://github.com/marcusbuffet/pipe-rename";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
mainProgram = "renamer";
|
||||
};
|
||||
}
|
|
@ -8081,6 +8081,8 @@ with pkgs;
|
|||
|
||||
pick = callPackage ../tools/misc/pick { };
|
||||
|
||||
pipe-rename = callPackage ../tools/misc/pipe-rename { };
|
||||
|
||||
pitivi = callPackage ../applications/video/pitivi { };
|
||||
|
||||
prism = callPackage ../applications/video/prism { };
|
||||
|
|
Loading…
Reference in a new issue