Commit Graph

11 Commits

Author SHA1 Message Date
Emily
1da61cd562 survex: 1.4.3 -> 1.4.11
Includes fixes for FFmpeg 7.
2024-10-07 06:04:30 +01: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
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Pol Dellaiera
3ecdb1d32d
survex: minor cleanup and refactor 2023-07-15 19:03:01 +02:00
Sergei Trofimovich
000663a015 survex: use xorg.* packages directly instead of xlibsWrapper indirection
Validated as no change in `out` output with `diffoscope`.
2022-11-14 09:18:38 +00:00
Weijia Wang
804100e6e1 survex: 1.4.1 -> 1.4.3 2022-10-08 03:07:14 +02:00
Renaud
c5d25af730
survex: 1.2.44 -> 1.4.1
* survex: 1.2.44 -> 1.4.1 (#160899)

Use source tarball to get man pages out of the box
Depend on `proj` 8.x and `python3`
Need GApps wrapping or it crashes

* survex: disable check phase on Darwin
2022-02-24 19:06:13 +01:00
Robert Schütz
d5cceedbd1 python,pythonPackages: make aliases
Since aliases are disallowed in nixpkgs, this makes usage of Python 2
which is EOL more explicit.
2022-01-16 18:39:59 +00:00
Robert Schütz
b51c3c22d5 survex: use proj_7
It is incompatible with PROJ 8.
2021-09-25 16:54:16 -07:00
OPNA2608
fb41ef3aaf survex: support Darwin build 2021-06-14 02:22:25 +01:00
matthewcroughan
05ed13f835 survex: init at 1.2.44
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Co-authored-by: Christoph Neidahl <christoph.neidahl@gmail.com>
2021-06-09 17:35:58 +01:00