Commit Graph

354 Commits

Author SHA1 Message Date
Charlie Root
26cc7c67b2
imagemagick: add bloxx12 to maintainers 2024-10-22 15:59:37 +02:00
Charlie Root
d05c2e3980
imagemagick: Add fftw support 2024-10-22 15:58:59 +02:00
Kerstin Humm
b12bcabd24
maintainers: remove erictapen from packages that I don't really maintain anymore 2024-10-22 12:32:29 +02:00
Robert Schütz
fcfdc7a358 imagemagick: 7.1.1-38 -> 7.1.1-39
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-38...7.1.1-39

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-10-06 18:53:30 -07:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Robert Schütz
18d5bb71c7 imagemagick: add willow to passthru.tests
see https://github.com/wagtail/Willow/issues/150
2024-09-05 12:28:43 -07:00
Robert Schütz
286d806049 imagemagick: 7.1.1-37 -> 7.1.1-38
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-37...7.1.1-38

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-09-02 10:07:46 -07:00
Robert Schütz
c946f33531 imagemagick: 7.1.1-36 -> 7.1.1-37
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-36...7.1.1-37

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-08-25 13:10:23 -07:00
Sergei Trofimovich
948d7ba778 imagemagick: 7.1.1-35 -> 7.1.1-36
Changes: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.1-36
2024-07-31 22:19:01 +01:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Weijia Wang
81dd4eeade
Merge pull request #327720 from dotlambda/imagemagick
imagemagick: drop unused arguments
2024-07-17 03:34:55 +02:00
Robert Schütz
6d2349ba77 imagemagick: drop unused arguments 2024-07-16 06:21:24 -07:00
Robert Schütz
b05c8baed0 imagemagick: 7.1.1-34 -> 7.1.1-35
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-34...7.1.1-35

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-07-15 01:04:45 -07:00
github-actions[bot]
c1d6d547af
Merge staging-next into staging 2024-06-24 06:01:33 +00:00
Ryan Hendrickson
aa38b88028 imagemagick: 7.1.1-33 -> 7.1.1-34 2024-06-23 22:40:03 -04:00
Martin Weinelt
2096642430
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/os-specific/windows/mingw-w64/default.nix
2024-06-23 19:09:00 +02:00
Ryan Hendrickson
429e84cd05 imagemagick: 7.1.1-32 -> 7.1.1-33 2024-06-22 16:23:54 -04:00
Aleksana
ee9cf00e6d
Merge pull request #315240 from Cryolitia/ghost-font
ghostscript: add output `fonts`
2024-06-15 19:32:39 +08:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
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-06-09 23:07:45 +02:00
北雁 Cryolitia
93a9ca34fe
ghostscript: add output fonts 2024-05-28 11:50:34 +08:00
Aleksana
3e4b79f710
Merge pull request #311820 from dotlambda/imagemagick
imagemagick: fix passthru.tests.pkg-config
2024-05-24 15:01:42 +08:00
Oliver Schmidt
1dfe0c3b38 imagemagick6: 6.9.12-68->6.9.13-10, fix build
CVEs updated according to the output of Vulnix, unfortunately, it is not
easy to find out which CVEs have been fixed in version 7 only and which
fixes have been backported.
2024-05-15 19:45:18 +02:00
Robert Schütz
7f301eab1b imagemagick: fix passthru.tests.pkg-config
The version suffix starting with "-" is not present in the pkg-config
file.
2024-05-14 19:32:51 -07:00
Sergei Trofimovich
45c1d2a3ae imagemagick: 7.1.1-30 -> 7.1.1-32
Changes:
- https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.1-31
- https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.1-32
2024-05-07 09:11:58 +01:00
Robert Schütz
f5efe3768a imagemagick: 7.1.1-29 -> 7.1.1-30
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-29...7.1.1-30

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-04-08 08:42:40 -07:00
Colin
abc8ebc206 imagemagick: remove build coreutils from cross-compiled output 2024-02-28 10:52:37 +00:00
Robert Schütz
00be2993bb imagemagick: 7.1.1-28 -> 7.1.1-29
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-28...7.1.1-29

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-02-25 17:05:55 -08:00
R. Ryantm
6a79a442b4 imagemagick: 7.1.1-27 -> 7.1.1-28 2024-02-12 04:20:15 +00:00
Robert Schütz
0490b296f3 imagemagick: 7.1.1-26 -> 7.1.1-27
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-26...7.1.1-27

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-01-26 21:31:28 -08:00
Robert Schütz
751a955324 imagemagick: 7.1.1-25 -> 7.1.1-26
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-25...7.1.1-26

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-01-08 13:17:58 -08:00
Robert Schütz
662d10fc8c imagemagick: 7.1.1-24 -> 7.1.1-25
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-24...7.1.1-25

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-01-02 01:57:48 -08:00
R. Ryantm
af75d07d23 imagemagick: 7.1.1-23 -> 7.1.1-24 2023-12-26 11:54:43 +00:00
Robert Schütz
48fd74ccdf imagemagick: 7.1.1-21 -> 7.1.1-23
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-21...7.1.1-23

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2023-12-11 20:11:02 -08:00
Robert Schütz
9bf63352f8 imagemagick: add nixos-icons to passthru.tests
See https://github.com/NixOS/nixpkgs/issues/263157.
2023-10-24 11:07:46 -07:00
Robert Schütz
8357c7082b imagemagick: 7.1.1-19 -> 7.1.1-21
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-19...7.1.1-21

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2023-10-24 11:03:19 -07:00
Stig
99971b2fe7
Revert "imagemagick: 7.1.1-19 -> 7.1.1-20" 2023-10-24 18:44:50 +02:00
Robert Schütz
aa03eb729f imagemagick: 7.1.1-19 -> 7.1.1-20
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-19...7.1.1-20

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2023-10-10 08:03:02 -07:00
Robert Schütz
087eac2653 imagemagick: 7.1.1-18 -> 7.1.1-19
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-18...7.1.1-19

Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2023-10-01 23:47:19 -07:00
Robert Schütz
e912f12890 imagemagick: 7.1.1-15 -> 7.1.1-18
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-15...7.1.1-18
2023-09-23 17:59:16 -07:00
Mario Rodas
58c5f021cc imagemagick: add changelog to meta 2023-09-23 17:59:11 -07:00
Robert Schütz
840a10e87e imagemagick: add perlPackages.ImageMagick to passthru.tests 2023-09-23 17:56:21 -07:00
Robert Schütz
d64cc4bd17 imagemagick: 7.1.1-14 -> 7.1.1-15
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-14...7.1.1-15
2023-07-31 11:23:49 -07:00
Robert Schütz
96199b7b25 imagemagick: 7.1.1-13 -> 7.1.1-14
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-13...7.1.1-14
2023-07-23 08:23:40 -07:00
Robert Schütz
588a7b4d8d imagemagick: 7.1.1-12 -> 7.1.1-13
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-12...7.1.1-13
2023-07-18 10:07:11 -07:00
Robert Schütz
e0334495f7 imagemagick: 7.1.1-11 -> 7.1.1-12
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-11...7.1.1-12
2023-06-28 22:27:18 -07:00
R. Ryantm
4cf3652aac imagemagick: 7.1.1-10 -> 7.1.1-11 2023-06-02 08:24:45 +00:00
Robert Schütz
91ede81bc4 imagemagick: 7.1.1-9 -> 7.1.1-10
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-9...7.1.1-10
2023-05-22 02:25:32 -07:00
Robert Schütz
c089534da5 imagemagick: 7.1.1-8 -> 7.1.1-9
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-8...7.1.1-9
2023-05-17 10:52:24 -07:00
Robert Schütz
e7a7316c53 imagemagick: 7.1.1-7 -> 7.1.1-8
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-7...7.1.1-8
2023-04-22 16:07:39 -07:00
Robert Schütz
f63627aaaf imagemagick: 7.1.1-6 -> 7.1.1-7
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-6...7.1.1-7
2023-04-17 08:26:44 -07:00