about summary refs log tree commit diff
path: root/pkgs/applications/graphics/qimgv
AgeCommit message (Collapse)AuthorFilesLines
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-03-19treewide: add meta.mainProgram to packages with a single binarystuebinm1-0/+1
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
2023-12-06qimgv: enable video supportAlexander Bakker1-0/+4
This patch enables video support for qimgv. VIDEO_SUPPORT=OFF is still the default for the version of qimgv we have. Looks like it will be enabled by default in the future though.
2022-11-19qimgv: drop unused patchCole Helbling1-13/+0
2022-11-19qimgv: 1.0.2 -> 1.0.3-alphaCole Helbling1-2/+2
Fixes compatibility with recent mpv changes.
2022-10-12pkgs.applications: remove unused argsMarkus S. Wamser1-1/+0
2021-10-31qimgv: 1.0.1 -> 1.0.2R. Ryantm1-2/+2
2021-09-29qimgv: 0.9.1 -> 1.0.1Daniel Nagy1-2/+2
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer1-2/+2
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2020-05-04qimgv: 0.9 -> 0.9.1Cole Helbling1-12/+2
https://github.com/easymodo/qimgv/compare/v0.9...v0.9.1
2020-05-01qimgv: 0.8.9 -> 0.9Cole Helbling2-2/+28
https://github.com/easymodo/qimgv/compare/v0.8.9...v0.9
2020-04-11qimgv: enable video supportCole Helbling1-18/+26
I actually went back and `strace`'d the binary when it complained about being unable to load the library it uses for playing videos. Turns out, it wasn't finding the library because it wasn't in any of its library paths. I added the lib path to `LD_LIBRARY_PATH` so it can find the library it uses to play videos, and now things are peachy. There is a (seemingly innocuous) error that gets displayed from Exiv2 being unable to determine its image type. Since it's actually a video, I think it's fine. Another issue that pops up in the output is missing `libcuda.so.1`, but that doesn't seem to affect functionality, and using `addOpenGLRunpath` on both the binary and libraries didn't silence it. Also did a little formatting.
2020-03-02qimgv: init at 0.8.9Cole Helbling1-0/+49
A few notes: * I only run Linux, so that is what I set `meta.platforms` to. * Video support is broken in both Nix and Arch builds.