nixpkgs/pkgs/tools/misc/mimeo/default.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchurl, desktop-file-utils, file, python3Packages }:
2016-03-06 20:44:09 +01:00
python3Packages.buildPythonApplication rec {
2020-03-29 12:34:50 +02:00
pname = "mimeo";
2021-08-05 22:50:14 +02:00
version = "2021.2";
2016-03-06 20:44:09 +01:00
src = fetchurl {
2020-03-29 12:34:50 +02:00
url = "https://xyne.archlinux.ca/projects/mimeo/src/${pname}-${version}.tar.xz";
2021-08-05 22:50:14 +02:00
sha256 = "113ip024ggajjdx0l406g6lwypdrddxz6k3640y6lzqjivcgybjf";
2016-03-06 20:44:09 +01:00
};
buildInputs = [ file desktop-file-utils ];
2016-03-06 20:44:09 +01:00
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'" \
2016-03-06 20:44:09 +01:00
--replace "EXE_FILE = 'file'" \
"EXE_FILE = '${file}/bin/file'"
'';
installPhase = "install -Dm755 Mimeo.py $out/bin/mimeo";
meta = with lib; {
2016-03-06 20:44:09 +01:00
description = "Open files by MIME-type or file name using regular expressions";
homepage = "https://xyne.archlinux.ca/projects/mimeo/";
2016-03-06 20:44:09 +01:00
license = [ licenses.gpl2 ];
maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
};
}