78d14c7a0e
Also make license field more specific.
40 lines
1.2 KiB
Nix
40 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;
|
|
};
|
|
}
|