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