Commit Graph

19 Commits

Author SHA1 Message Date
R. Ryantm
e049b3ce6e zrythm: 1.0.0-rc.1 -> 1.0.0-rc.2 2024-10-31 11:31:33 +00: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
éclairevoyant
0926bdbf98
treewide: fix uses of finalAttrs.pname in source urls 2024-07-12 20:23:39 -04:00
Astavie
a6b8550e3f zrythm: add passthru.updateScript 2024-05-02 10:51:18 +02:00
Astavie
5e63aa824f zrythm: 1.0.0-beta.4.9.1 -> 1.0.0-rc.1
Co-authored-by: PowerUser64 <blake@blakenorth.net>
Co-authored-by: davidak <git@davidak.de>
2024-05-02 10:51:18 +02:00
aleksana
9dddc116d5 treewide: replace wrapGAppsHook with wrapGAppsHook4 for gtk4 apps 2024-04-06 01:33:38 +08:00
Sergei Trofimovich
8965393f1f zrythm: fix gcc-13 build failure
Without the change the build fails on `master` as
https://hydra.nixos.org/build/249149391:

    ../data/plugins/generated/compressor.lv2/compressor.cpp
    ../data/plugins/generated/compressor.lv2/compressor.cpp:351:9: error: 'intptr_t' does not name a type
      351 |         intptr_t fpsr = 0;
          |         ^~~~~~~~
2024-02-11 12:40:53 +00:00
BattleCh1cken
5dc6884610 zrythm: fix failing build in qtPreHook phase 2023-06-15 19:45:16 -04:00
Bart Brouns
c9378b033d zrythm: 1.0.0-beta.4.6.3 -> 1.0.0-beta.4.9.1 2023-05-12 17:10:06 +02:00
Yuu Yin
4054db2f35
zrythm: 1.0.0-beta.4.5.62 -> 1.0.0-beta.4.6.3 (#221681)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-03-18 20:36:41 +01:00
Yuu Yin
410971fc35
zrythm: 1.0.0-alpha.28.1.3 -> 1.0.0-beta.4.5.62
Co-authored-by: zseri <zseri.devel@ytrizja.de>
Co-authored-by: Alexandros Theodotou <alex@zrythm.org>
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>

Zrythm 1.0.0-beta.4.5.62 needs
https://github.com/falkTX/Carla/tree/main/source/includes/clap, which is only
available on unstable.
2023-03-03 11:20:47 +00:00
Liam Diprose
91b2c4bf92 zrythm: add path for fallback icons 2022-12-21 18:04:43 +13:00
Markus S. Wamser
c9d167f174 pkgs.applications: remove unused args 2022-10-12 16:00:16 +02:00
Bart Brouns
c27afb62d4 zrythm: 1.0.0-alpha.26.0.13 -> 1.0.0-alpha.28.1.3 2022-01-29 18:16:01 +01:00
Naïm Favier
1a6f79a47e
zrythm: fix build with meson 0.60
Feature flags were renamed in 2f6ca072f0
and the ffmpeg dependency was dropped in 116b955391
2022-01-22 20:28:17 +01:00
uniquepointer
792251951d zrythm: enable carla support 2021-12-27 18:04:08 -05:00
Bart Brouns
ad9c4bcf52 zrythm: don't strip 2021-12-12 12:28:05 +01:00
Kerstin Humm
bb799694db
epoxy: rename to libepoxy
https://github.com/NixOS/nixpkgs/issues/145040
2021-11-11 05:55:32 +01:00
tshaynik
100670b224 zrythm: init at 1.0.0-alpha.26.0.13
Closes #98871

Built on work done by @andreasfelix on #129457 but adds additional
missing dependencies, uses the latest zrythm
version, makes use of dependencies that have since been added to
nixpkgs, and resolves the issue of the crash on start that previous
packaging attempt was encountering.
2021-11-05 15:12:39 -04:00