mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, fetchurl, desktop-file-utils, file, python3Packages }:
|
|
|
|
let version = "2023";
|
|
in python3Packages.buildPythonApplication {
|
|
pname = "mimeo";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://xyne.dev/projects/mimeo/src/mimeo-${version}.tar.xz";
|
|
hash = "sha256-CahvSypwR1aHVDHTdtty1ZfaKBWPolxc73uZ5OyeqZA=";
|
|
};
|
|
|
|
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;
|
|
mainProgram = "mimeo";
|
|
};
|
|
}
|