mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchurl, desktop_file_utils, file, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "mimeo-${version}";
|
|
version = "2017.2.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://xyne.archlinux.ca/projects/mimeo/src/${name}.tar.xz";
|
|
sha256 = "1xbhz08aanix4bibz5jla58cmi6rnf946pf64wb0ka3s8jx0l5a0";
|
|
};
|
|
|
|
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";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open files by MIME-type or file name using regular expressions";
|
|
homepage = http://xyne.archlinux.ca/projects/mimeo/;
|
|
license = [ licenses.gpl2 ];
|
|
maintainers = [ maintainers.rycee ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|