edir: init at 2.7.3
This commit is contained in:
parent
f0d8828b86
commit
6e4a887d09
19
pkgs/tools/misc/edir/default.nix
Normal file
19
pkgs/tools/misc/edir/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user