biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / mimeo / default.nix
blob49a86807017f214af506b8a1c49f2d892542d6f5
1 { lib, fetchurl, desktop-file-utils, file, python3Packages }:
3 let version = "2023";
4 in python3Packages.buildPythonApplication {
5   pname = "mimeo";
6   inherit version;
8   src = fetchurl {
9     url = "https://xyne.dev/projects/mimeo/src/mimeo-${version}.tar.xz";
10     hash = "sha256-CahvSypwR1aHVDHTdtty1ZfaKBWPolxc73uZ5OyeqZA=";
11   };
13   buildInputs = [ file desktop-file-utils ];
15   propagatedBuildInputs = [ python3Packages.pyxdg ];
17   preConfigure = ''
18     substituteInPlace Mimeo.py \
19       --replace "EXE_UPDATE_DESKTOP_DATABASE = 'update-desktop-database'" \
20                 "EXE_UPDATE_DESKTOP_DATABASE = '${desktop-file-utils}/bin/update-desktop-database'" \
21       --replace "EXE_FILE = 'file'" \
22                 "EXE_FILE = '${file}/bin/file'"
23   '';
25   installPhase = "install -Dm755 Mimeo.py $out/bin/mimeo";
27   doInstallCheck = true;
28   installCheckPhase = ''
29     $out/bin/mimeo --help > /dev/null
30   '';
32   meta = with lib; {
33     description = "Open files by MIME-type or file name using regular expressions";
34     homepage = "https://xyne.dev/projects/mimeo/";
35     license = [ licenses.gpl2Only ];
36     maintainers = [ maintainers.rycee ];
37     platforms = platforms.unix;
38     mainProgram = "mimeo";
39   };