depot/third_party/nixpkgs/pkgs/tools/misc/mimeo/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

39 lines
1.2 KiB
Nix

{ lib, fetchurl, desktop-file-utils, file, python3Packages }:
let version = "2022.7";
in python3Packages.buildPythonApplication {
pname = "mimeo";
inherit version;
src = fetchurl {
url = "https://xyne.dev/projects/mimeo/src/mimeo-${version}.tar.xz";
hash = "sha256-xzWPMtlKj35mkE04jcGalbf/94qEOOUi9pvZgSPgdj8=";
};
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";
doInstallCheck = true;
installCheckPhase = ''
$out/bin/mimeo --help > /dev/null
'';
meta = with lib; {
description = "Open files by MIME-type or file name using regular expressions";
homepage = "https://xyne.dev/projects/mimeo/";
license = [ licenses.gpl2Only ];
maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
};
}