lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #112290 from guyonvarch/init-edir

edir: init at 2.7.3

authored by

Anderson Torres and committed by
GitHub
e69d305a 6dbcdd2b

+21
+19
pkgs/tools/misc/edir/default.nix
··· 1 + { lib, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "edir"; 5 + version = "2.7.3"; 6 + 7 + src = python3Packages.fetchPypi { 8 + inherit pname version; 9 + sha256 = "06nsy9ikljc437368l38hsw75whacn3j6jwmdgg766q61pnifhkp"; 10 + }; 11 + 12 + meta = with lib; { 13 + description = "Program to rename and remove files and directories using your editor"; 14 + homepage = "https://github.com/bulletmark/edir"; 15 + license = licenses.gpl3Plus; 16 + maintainers = with maintainers; [ guyonvarch ]; 17 + platforms = platforms.all; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 3736 3736 3737 3737 edid-generator = callPackage ../tools/misc/edid-generator { }; 3738 3738 3739 + edir = callPackage ../tools/misc/edir { }; 3740 + 3739 3741 editres = callPackage ../tools/graphics/editres { }; 3740 3742 3741 3743 edit = callPackage ../applications/editors/edit { };