2021-02-05 17:12:51 +00:00
|
|
|
{ lib, fetchurl, desktop-file-utils, file, python3Packages }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
let version = "2022.7";
|
|
|
|
in python3Packages.buildPythonApplication {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "mimeo";
|
2022-09-09 14:08:57 +00:00
|
|
|
inherit version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-09-09 14:08:57 +00:00
|
|
|
url = "https://xyne.dev/projects/mimeo/src/mimeo-${version}.tar.xz";
|
|
|
|
hash = "sha256-xzWPMtlKj35mkE04jcGalbf/94qEOOUi9pvZgSPgdj8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ file desktop-file-utils ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ python3Packages.pyxdg ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Mimeo.py \
|
|
|
|
--replace "EXE_UPDATE_DESKTOP_DATABASE = 'update-desktop-database'" \
|
|
|
|
"EXE_UPDATE_DESKTOP_DATABASE = '${desktop-file-utils}/bin/update-desktop-database'" \
|
|
|
|
--replace "EXE_FILE = 'file'" \
|
|
|
|
"EXE_FILE = '${file}/bin/file'"
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = "install -Dm755 Mimeo.py $out/bin/mimeo";
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/mimeo --help > /dev/null
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Open files by MIME-type or file name using regular expressions";
|
2022-01-19 23:45:15 +00:00
|
|
|
homepage = "https://xyne.dev/projects/mimeo/";
|
2022-09-09 14:08:57 +00:00
|
|
|
license = [ licenses.gpl2Only ];
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.rycee ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|