about summary refs log tree commit diff
path: root/pkgs/applications/graphics
AgeCommit message (Collapse)AuthorFilesLines
2021-01-25Merge pull request #110574 from talyz/krita-4.4.2Bernardo Meurer1-5/+2
krita: 4.4.1 -> 4.4.2
2021-01-24treewide: fix double quoted strings in meta.descriptionvolth4-6/+6
Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
2021-01-24treewide: stdenv.lib -> libPavol Rusnak1-2/+2
2021-01-23mpi: use mpi attribute consistently as the default MPI implementationsMarkus Kowalewski1-2/+2
Use the attribute mpi to provide a system wide default MPI implementation. The default is openmpi (as before). This now allows for overriding the MPI implentation by using the overlay mechanism. Build all packages with mpich instead of the default openmpi can now be achived like this: self: super: { mpi = super.mpich; } All derivations that have been using "mpi ? null" to provide optional building with MPI have been change in the following way to allow for optional builds with MPI: { ... , mpi , useMpi ? false }
2021-01-23krita: 4.4.1 -> 4.4.2talyz1-5/+2
We can re-enable parallel building, since the bug causing intermittent build issues is now fixed. See https://bugs.kde.org/show_bug.cgi?id=431226 for more information. Closes #35359.
2021-01-22Merge pull request #110297 from bbigras/fehMaximilian Bosch1-2/+2
feh: 3.6.1 -> 3.6.2
2021-01-22treewide: add final newlinezowoq1-1/+1
2021-01-21Merge pull request #110289 from bbigras/shotwellSandro1-2/+4
shotwell: 0.31.2 -> 0.31.3
2021-01-21Merge pull request #110282 from mingmingrr/masterSandro1-3/+3
pythonPackages.hydrus: 420 -> 426
2021-01-21feh: 3.6.1 -> 3.6.2Bruno Bigras1-2/+2
2021-01-21shotwell: 0.31.2 -> 0.31.3Bruno Bigras1-2/+4
2021-01-21pythonPackages.hydrus: 420 -> 426mingmingrr1-3/+3
2021-01-20xfig: 3.2.7b1 -> 3.2.8Thomas Gerbet1-9/+6
2021-01-20Merge pull request #110178 from r-ryantm/auto-update/pdfcpuDoron Behar1-3/+3
pdfcpu: 0.3.7 -> 0.3.8
2021-01-20fig2dev: 3.2.7b -> 3.2.8Thomas Gerbet1-8/+14
Fixes the fig2ps2tex and pic2tpic scripts. Fixes CVE-2019-19746.
2021-01-20avocode: 4.10.4 -> 4.11.0Meghea Iulian1-3/+5
2021-01-20pdfcpu: 0.3.7 -> 0.3.8R. RyanTM1-3/+3
2021-01-20treewide: editorconfig fixeszowoq1-8/+8
- remove trailing whitespace - use spaces for indentation
2021-01-19Merge pull request #106102 from fgaz/pikopixel/initSandro1-0/+48
pikopixel: init at 1.0-b9e
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer63-132/+132
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.
2021-01-19Merge pull request #102922 from OPNA2608/init/hdr-plus/21.03Sandro1-0/+42
2021-01-19Merge pull request #98479 from OPNA2608/package-megapixelsSandro1-0/+55
megapixels: init at 0.14.0
2021-01-18Merge pull request #109819 from r-ryantm/auto-update/fondoSandro1-2/+2
fondo: 1.5.0 -> 1.5.1
2021-01-18fondo: 1.5.0 -> 1.5.1R. RyanTM1-2/+2
2021-01-18Merge pull request #103518 from djanatyn/pkg/xmountainsSandro1-0/+25
2021-01-18emulsion: 7.2 -> 8.0R. RyanTM1-3/+3
2021-01-18hdr-plus: init at 2020-10-29OPNA26081-0/+42
2021-01-16Merge pull request #109455 from siraben/remove-stdenv-libJörg Thalheim75-211/+211
2021-01-16Merge pull request #107303 from bcdarwin/update-f3dMario Rodas1-2/+2
f3d: 1.0.1 -> 1.1.0
2021-01-16treewide: stdenv.lib -> libBen Siraphob75-211/+211
2021-01-16treewide: fix double quoted strings in meta.descriptionBen Siraphob1-1/+1
2021-01-15freecad: add scipy and pyyaml to dependenciesppenguin1-0/+1
Closes #108424
2021-01-14Merge pull request #109381 from lucasew/fix/zgrviewerSandro1-1/+1
zgrviewer: fix java jre binary path
2021-01-14zgrviewer: fix java jre binary pathLucas Eduardo1-1/+1
Signed-off-by: GitHub <noreply@github.com>
2021-01-14megapixels: init at 0.14.0Christoph Neidahl1-0/+55
2021-01-13ufraw: removeFlorian Klink2-90/+0
This is broken and unmaintained. nufraw seems to be a drop-in alternative, but is currently broken (see https://github.com/NixOS/nixpkgs/pull/108993#issuecomment-757988146). Using Darktable seems to be the reasonable choice for now. Closes https://github.com/NixOS/nixpkgs/issues/97946.
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch108-206/+206
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-09Merge master into staging-nextgithub-actions[bot]2-4/+81
2021-01-09Merge pull request #108820 from prusnak/xr-updatePavol Rusnak2-4/+81
monado: Add serviceSupport option
2021-01-09Merge branch 'master' into staging-nextMichael Weiss1-0/+33
Manually resolved a conflict in pkgs/development/libraries/libbladeRF/default.nix.
2021-01-09hello-wayland: init at 2020-07-27Alyssa Ross1-0/+33
This is a program that just displays a static cat picture in a Wayland window. I packaged it a while ago thinking it wouldn't be useful for anybody else, but a conversation on IRC today made me realise it would be! hello-wayland is very useful as a minimal example when hacking on Wayland ecosystem stuff -- even if Firefox doesn't work yet, hello-wayland probably will and that can be useful to guide you in the right direction!
2021-01-09monado: Add serviceSupport optionJoe Hermaszewski1-4/+33
This controls XRT_FEATURE_SERVICE. See https://gitlab.freedesktop.org/monado/monado/-/blob/master/doc/targets.md#xrt_feature_service-disabled for more info.
2021-01-09xrgears: init at unstable-2020-04-15Joe Hermaszewski1-0/+48
2021-01-08Merge master into staging-nextgithub-actions[bot]1-9/+11
2021-01-08Merge pull request #108729 from sikmir/mtpaintSandro1-9/+11
mtPaint: 3.49.12 → 3.50.01
2021-01-08Merge branch 'master' into staging-nextJan Tojnar3-29/+145
zynaddsubfx conflict has been updated to 3.0.1, which conflicted with rewrite after 3.0.5 update on a different branch.
2021-01-08mtPaint: 3.49.12 → 3.50.01Nikolay Korotkiy1-9/+11
2021-01-07Merge pull request #108626 from asbachb/new/nufrawSandro2-0/+75
nufraw: init at 0.43-3
2021-01-07nufraw: init at 0.43-3Benjamin Asbach2-0/+75
`nufraw` is used to manipulate raw images. `nufraw-thumbnailer` is used to generate thumbnails for raw images. relates #108444
2021-01-07Merge pull request #108309 from sternenseemann/imv-4.2.0Michele Guerini Rocco1-29/+70
imv: 4.1.0 -> 4.2.0