mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, qt5
|
|
, stdenv
|
|
, installShellFiles
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "vimiv-qt";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "karlch";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-28sk5qDVmrgXYX2wm5G8zv564vG6GwxNp+gjrFHCRfU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles qt5.wrapQtAppsHook python3.pkgs.setuptools ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ pyqt5 py3exiv2 ];
|
|
|
|
buildInputs = [ qt5.qtsvg ] ++ lib.optionals stdenv.hostPlatform.isLinux [ qt5.qtwayland ];
|
|
|
|
postInstall = ''
|
|
install -Dm644 misc/vimiv.desktop $out/share/applications/vimiv.desktop
|
|
install -Dm644 misc/org.karlch.vimiv.qt.metainfo.xml $out/metainfo/org.karlch.vimiv.qt.metainfo.xml
|
|
install -Dm644 LICENSE $out/licenses/vimiv/LICENSE
|
|
install -Dm644 icons/vimiv.svg $out/icons/hicolor/scalable/apps/vimiv.svg
|
|
installManPage misc/vimiv.1
|
|
|
|
for i in 16 32 64 128 256 512; do
|
|
install -Dm644 icons/vimiv_''${i}x''${i}.png $out/icons/hicolor/''${i}x''${i}/apps/vimiv.png
|
|
done
|
|
'';
|
|
|
|
# Vimiv has to be wrapped manually because it is a non-ELF executable.
|
|
dontWrapQtApps = true;
|
|
preFixup = ''
|
|
wrapQtApp $out/bin/vimiv
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Image viewer with Vim-like keybindings (Qt port)";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "https://github.com/karlch/vimiv-qt";
|
|
maintainers = with maintainers; [ dschrempf ];
|
|
mainProgram = "vimiv";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|