edir: init at 2.7.3

This commit is contained in:
Joris 2021-02-07 12:00:06 +01:00
parent f0d8828b86
commit 6e4a887d09
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "edir";
version = "2.7.3";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "06nsy9ikljc437368l38hsw75whacn3j6jwmdgg766q61pnifhkp";
};
meta = with lib; {
description = "Program to rename and remove files and directories using your editor";
homepage = "https://github.com/bulletmark/edir";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ guyonvarch ];
platforms = platforms.all;
};
}

View file

@ -3738,6 +3738,8 @@ in
edid-generator = callPackage ../tools/misc/edid-generator { };
edir = callPackage ../tools/misc/edir { };
editres = callPackage ../tools/graphics/editres { };
edit = callPackage ../applications/editors/edit { };