Pol Dellaiera
3eb7f7a63b
Merge pull request #248683 from oxij/tree/source-root-continues-3
...
treewide: cleanup `sourceRoot` and `setSourceRoot` usage
2023-08-15 05:53:52 +02:00
Jacob Birkett
b4d994ff5b
tidal-hifi: set meta.mainProgram
2023-08-14 16:11:27 -07:00
Jacob Birkett
fcdadd5e4e
tidal-hifi: add flag for NIXOS_OZONE_WL
2023-08-14 16:10:42 -07:00
Jacob Birkett
32a52099bd
tidal-hifi: 5.5.0 -> 5.6.0
2023-08-14 16:09:51 -07:00
Jacob Birkett
a8f61fc338
tidal-hifi: add @spikespaz as a maintainer
2023-08-14 16:08:16 -07:00
Artturin
88b60b61b9
treewide: fix cross makeWrapper eval
...
fix `error: makeWrapper/makeShellWrapper must be in nativeBuildInputs`
The `faust.faust2ApplBase` in used in `faust2sc` + more, requires
changes because it puts all the callPackage arguments in the
`mkDerivation` call and thus causes a eval fail
`nix-eval-jobs --flake ".#legacyPackages.x86_64-linux.pkgsCross.aarch64-multiplatform" --workers 2 2>/dev/null --impure | jq 'select(.error?) | select(.error | match ("makeWrapper/makeShellWrapper"))'
2023-08-15 01:20:56 +03:00
Pol Dellaiera
3af9ec4f57
gst123: sort attributes and remove with lib;
2023-08-14 19:54:26 +00:00
Pol Dellaiera
98f70a4dad
gst123: add meta.mainProgram
2023-08-14 19:54:26 +00:00
Stefan Westerfeld
14ae6da134
gst123: init at 0.4.1
...
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
Signed-off-by: Stefan Westerfeld <stefan@space.twc.de>
2023-08-14 16:36:43 +00:00
R. Ryantm
466e2298cf
asunder: 2.9.7 -> 3.0.1
2023-08-14 08:01:52 +00:00
R. Ryantm
68fa45a359
cava: 0.8.3 -> 0.9.0
2023-08-13 21:54:04 +00:00
Weijia Wang
72da2f59ba
Merge pull request #248864 from matthiasbeyer/update-tageditor
...
tageditor: 3.7.9 -> 3.8.1
2023-08-13 17:29:19 +02:00
Weijia Wang
a020a80c4c
Merge pull request #248818 from r-ryantm/auto-update/spotify-player
...
spotify-player: 0.14.1 -> 0.15.0
2023-08-13 15:31:13 +02:00
Matthias Beyer
c3084eb4ed
tageditor: 3.7.9 -> 3.8.1
...
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2023-08-13 10:18:59 +02:00
Nick Cao
5782a2b70e
Merge pull request #248767 from r-ryantm/auto-update/ocenaudio
...
ocenaudio: 3.12.4 -> 3.12.5
2023-08-13 00:59:48 -06:00
Nick Cao
2828fe8c7e
Merge pull request #247940 from Intuinewin/spotify/darwin-update
...
spotify: 1.2.15.828.g79f41970 -> 1.2.17.834.g26ee1129
2023-08-12 23:59:08 -06:00
R. Ryantm
a7f563d7c1
spotify-player: 0.14.1 -> 0.15.0
2023-08-13 02:45:26 +00:00
figsoda
5f45086e20
Merge pull request #248602 from figsoda/pw
2023-08-12 20:55:27 -04:00
huantian
62e4c5767d
musescore: re-enable using system freetype
...
Fixes #244409 .
Upstream removed the option to use system freetype library in v4.1.0,
causing the app to crash on systems when the outdated bundled freetype
tries to load the Noto Sans font.
For now, re-add the option ourselves. The fix has been merged upstream,
so we can remove this patch with the next version. In the future, we
may replace the other bundled thirdparty libs with system libs.
2023-08-12 14:59:36 -07:00
R. Ryantm
ad35cfa138
ocenaudio: 3.12.4 -> 3.12.5
2023-08-12 19:35:18 +00:00
Jan Malakhovski
d098c821d6
treewide: remove unneeded dots and slashes in sourceRoot
s
2023-08-12 08:29:56 +00:00
Jan Malakhovski
b358ebd870
treewide: replace setSourceRoot = "sourceRoot=$PWD"
and similar with sourceRoot = "."
2023-08-12 08:29:55 +00:00
Pol Dellaiera
5d84cae469
Merge pull request #248512 from r-ryantm/auto-update/tidal-hifi
...
tidal-hifi: 5.3.0 -> 5.5.0
2023-08-12 05:55:09 +02:00
figsoda
09d7be2f72
pwvucontrol: init at 0.2
...
https://github.com/saivert/pwvucontrol
2023-08-11 20:44:53 -04:00
Pol Dellaiera
b584e3aab5
tidal-hifi: use finalAttrs
pattern
2023-08-11 22:35:33 +02:00
Jonas Heinrich
666b3d0e06
Merge pull request #248150 from onny/feishin-update
...
feishin: 0.2.0 -> 0.3.0
2023-08-11 18:53:14 +02:00
R. Ryantm
e07b50300c
tidal-hifi: 5.3.0 -> 5.5.0
2023-08-11 09:56:12 +00:00
Jan Malakhovski
591ccfe5b9
treewide: noop: refer to src.name
or similar where appropriate, part 3: more use cases
...
This continues where d8f7f6a5ce
left off. Similarly
to that commit, this commit this also points `sourceRoot`s to `src.name` and similar
instead of keeping hardcoded names, and edits other derivation attrs do do the same,
where appropriate.
Also, similarly to d8f7f6a5ce
some of expressions this
edits use `srcs` attribute with customly-named sources, so they have to be moved
into `let` blocks to keep evaluation efficient (the other, worse, way to do this
would to recurcively refer to `elemAt n finalAttrs.srcs` or, similarly, with `rec`).
2023-08-11 09:20:44 +00:00
VuiMuich
91eae85639
termusic: 0.7.10 -> 0.7.11 ( #247425 )
...
* termusic: 0.7.10 -> 0.7.11
* termusic: sort attributes alphabetically, remove `with lib;`
* termusic: fix builds on Darwin
* termusic: fix builds on Darwin
* termusic: fix builds on x86_64 Darwin
* termusic: fix builds on Darwin
* Revert "termusic: fix builds on Darwin"
This reverts commit 90670409e9
.
This reverts commit f137ccf109
.
* termusic: fix builds on Darwin
* termusic: fix builds on Darwin
---------
Co-authored-by: Pol Dellaiera <pol.dellaiera@protonmail.com>
2023-08-11 08:56:43 +02:00
Basti
588861551a
alsa-scarlett-gui: fix postInstall indentation, change to not use pname in substituion ( #246636 )
2023-08-11 01:07:32 +02:00
Franz Pletz
f33f44787b
Merge pull request #244635 from PowerUser64/lsp-plugins
2023-08-10 22:12:04 +02:00
Franz Pletz
353308dbe7
Merge pull request #245680 from NotAShelf/bump-nuclear
2023-08-10 21:39:22 +02:00
Jonas Heinrich
9bcfdfb07d
feishin: 0.2.0 -> 0.3.0
2023-08-09 16:34:47 +02:00
Antoine Labarussias
07cfdb2219
spotify: 1.2.15.828.g79f41970 -> 1.2.17.834.g26ee1129
2023-08-08 15:13:15 +02:00
Vladimír Čunát
41c7605718
Merge #245935 : staging-next 2023-07-28
2023-08-08 07:33:42 +02:00
github-actions[bot]
4507a6bd1f
Merge master into staging-next
2023-08-08 00:01:49 +00:00
Bernardo Meurer
014a56c354
ponymix: set meta.mainProgram
2023-08-07 19:11:20 -04:00
Sumner Evans
f5e26ea49d
sublime-music: rename dependency python-mpv -> mpv
...
Signed-off-by: Sumner Evans <me@sumnerevans.com>
2023-08-07 10:18:01 -06:00
github-actions[bot]
dd48ee46cf
Merge master into staging-next
2023-08-07 12:00:52 +00:00
Frederik Rietdijk
65a8bb46e3
Merge pull request #246900 from tjni/cx-freeze
...
python3.pkgs.cx-freeze: switch to pyproject and rename
2023-08-07 09:22:25 +02:00
github-actions[bot]
191e60634e
Merge master into staging-next
2023-08-06 18:01:04 +00:00
Mario Rodas
4b68f2cde5
Merge pull request #247532 from jumper149/jumper149-patch-mda-lv2
...
mda-lv2: Update homepage URL
2023-08-06 12:51:00 -05:00
Pol Dellaiera
48eb096ea6
Merge pull request #247495 from NixOS/kid3-use-finalAttrs-pattern
...
kid3: use `finalAttrs` pattern
2023-08-06 19:18:57 +02:00
Felix Springer
b3340fc540
mda-lv2: Update homepage URL
2023-08-06 17:24:53 +02:00
Weijia Wang
19bd2461ef
Merge pull request #247488 from r-ryantm/auto-update/praat
...
praat: 6.3.10 -> 6.3.14
2023-08-06 17:01:02 +02:00
Weijia Wang
604a7c7801
Merge pull request #247472 from r-ryantm/auto-update/carla
...
carla: 2.5.5 -> 2.5.6
2023-08-06 16:52:54 +02:00
Francesco Gazzetta
3c47127bb1
Merge pull request #247477 from r-ryantm/auto-update/ft2-clone
...
ft2-clone: 1.68 -> 1.69
2023-08-06 15:31:21 +02:00
github-actions[bot]
57c45024b3
Merge master into staging-next
2023-08-06 12:01:39 +00:00
Pol Dellaiera
cb820210e8
kid3: use finalAttrs
pattern
2023-08-06 12:35:22 +02:00
Pol Dellaiera
78c41c986b
praat: use finalAttrs
pattern
2023-08-06 12:31:02 +02:00
R. Ryantm
acb3384672
kid3: 3.9.3 -> 3.9.4
2023-08-06 10:29:04 +00:00
R. Ryantm
7f565d9c0d
praat: 6.3.10 -> 6.3.14
2023-08-06 09:40:40 +00:00
R. Ryantm
5514a1578b
ft2-clone: 1.68 -> 1.69
2023-08-06 07:40:34 +00:00
R. Ryantm
4e0fae36b6
carla: 2.5.5 -> 2.5.6
2023-08-06 07:17:10 +00:00
github-actions[bot]
c90f3611dc
Merge master into staging-next
2023-08-06 00:02:21 +00:00
Pavel Sobolev
0ba388c967
picard: 2.8.5 -> 2.9
2023-08-05 13:25:22 +03:00
github-actions[bot]
16547be5c0
Merge master into staging-next
2023-08-05 00:02:07 +00:00
Weijia Wang
aa3df0ffdf
Merge pull request #247052 from samuela/upkeep-bot/plexamp-4.8.2-1691108956
...
plexamp: 4.8.1 -> 4.8.2
2023-08-04 23:12:08 +02:00
Janik
9a00a1f48c
Merge pull request #245172 from Scrumplex/qpwgraph-0.5.1
2023-08-04 22:17:15 +02:00
Weijia Wang
ac82995363
Merge pull request #247137 from wegank/guile-platforms-3
...
treewide: reduce guile_2_0 usage
2023-08-04 20:36:06 +02:00
github-actions[bot]
3af9469ebd
Merge master into staging-next
2023-08-04 18:01:05 +00:00
Artturi
7d2b5b9e86
Merge pull request #247133 from khaneliman/audio-mainProgram
2023-08-04 19:19:51 +03:00
Austin Horstman
ef8105b8e1
treewide: add meta.mainProgram to audio
2023-08-04 10:54:47 -05:00
Weijia Wang
e17f117a71
denemo: pin guile_2_2 instead
2023-08-04 17:29:26 +02:00
Artturi
e5e916dfd5
Merge pull request #247113 from Scrumplex/various-mainProgram
2023-08-04 18:26:05 +03:00
Weijia Wang
d1d4151529
Merge pull request #247062 from Aleksanaa/netease-cloud-music-gtk
...
netease-cloud-music-gtk: 2.0.3 -> 2.2.0
2023-08-04 16:01:12 +02:00
Sefa Eyeoglu
48912917aa
mpc-cli: set mainProgram
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-08-04 14:54:57 +02:00
github-actions[bot]
534a2a75fb
Merge master into staging-next
2023-08-04 12:01:11 +00:00
Weijia Wang
47bed4fe00
netease-cloud-music-gtk: restrict platforms
2023-08-04 12:54:46 +02:00
Weijia Wang
7774391040
Merge pull request #247063 from emilazy/cdrdao-fixes
...
{cdrdao,whipper}: support Darwin and add patch
2023-08-04 12:12:59 +02:00
aleksana
8a4f0c286e
netease-cloud-music-gtk: 2.0.3 -> 2.2.0
2023-08-04 10:36:38 +08:00
nixpkgs-upkeep-bot
577b523196
plexamp: 4.8.1 -> 4.8.2
2023-08-04 00:29:16 +00:00
github-actions[bot]
0542af4e29
Merge master into staging-next
2023-08-04 00:02:04 +00:00
Jan Malakhovski
5852f26bdc
treewide: noop: refer to src.name
or similar in sourceRoot
where appropriate, part 1: trivial cases
2023-08-03 16:32:03 +00:00
Hannes Braun
b3ba35694b
airwindows-lv2: 20.0 -> 22.0
2023-08-03 17:44:22 +02:00
github-actions[bot]
dc63372d70
Merge master into staging-next
2023-08-03 12:01:13 +00:00
Christoph Neidahl
e24affc172
bambootracker, bambootracker-qt6: 0.6.1 -> 0.6.2 ( #246769 )
...
* bambootracker, bambootracker-qt6: Convert to finalAttrs, add updateScript
* bambootracker, bambootracker-qt6: 0.6.1 -> 0.6.2
2023-08-03 12:30:16 +02:00
Theodore Ni
043c1325f6
python310Packages.cx-freeze: rename from cx_Freeze
2023-08-02 20:50:12 -07:00
github-actions[bot]
5827446dce
Merge master into staging-next
2023-08-03 00:01:56 +00:00
Robert Hensing
f8f9f13d57
Merge pull request #246386 from hercules-ci/lib-getExe-dont-make-name-assumption
...
lib.getExe: Do not make assumptions about the main program
2023-08-02 20:05:52 +02:00
NotAShelf
c4ee3d504a
nuclear: 0.6.6 -> 0.6.27
2023-08-02 10:07:19 +03:00
Emily
58dff2378f
{cdrdao,whipper}: support Darwin
2023-08-02 04:05:03 +01:00
Doron Behar
cc63e791bf
Merge branch 'master' into staging-next
...
* master: (77 commits)
containerd: 1.7.2 -> 1.7.3
python310Packages.transformers: 4.30.2 -> 4.31.0
plasma-sdk: unbreak build, again
stellarium: add patch for indi 2.0 compatibility
indi-full: 1.9.8 -> 2.0.2, reenable Atik, Pentax and SX drivers
indilib: 1.9.8 -> 2.0.2
plasma: 5.27.6 -> 5.27.7
alsa-scarlett-gui: light refactoring
alsa-scarlett-gui: Change icons path back to relative in desktop entry file
alsa-scarlet-gui: light refactoring Done some light refactoring for better consitence in the code.
alsa-scarlett-gui: fix for deskop integration
alsa-scarlett-gui: fixed desktop entry
release-notes: note breaking woodpecker update
woodpecker-*: 0.15.11 -> 1.0.0
pnpm-lock-export: use fork with v6 support
suricata: 6.0.13 -> 7.0.0
rubyfmt: add support for macos arm64/x86
rubyfmt: init at 0.8.1
dayon: init at 11.0.7
nixos/atuin: harden systemd unit
...
2023-08-01 16:52:24 +03:00
matt
b057528757
alsa-scarlett-gui: light refactoring
2023-08-01 11:05:59 +00:00
matt
4017122623
alsa-scarlett-gui: Change icons path back to relative in desktop entry file
2023-08-01 11:05:59 +00:00
matt
97edbb78c6
alsa-scarlet-gui: light refactoring
...
Done some light refactoring for better consitence in the code.
2023-08-01 11:05:59 +00:00
matt
66f8bb0d81
alsa-scarlett-gui: fix for deskop integration
...
Now pretty much any DE should support the desktop entry file.
The targetpath for the "Exec=" key is now absolute and targets the
binary in the nix store. This also applies to the "Icon=" key.
Also "substitueInPlace" is used to manipulate the default desktop entry
file.
2023-08-01 11:05:59 +00:00
matt
18dd51567e
alsa-scarlett-gui: fixed desktop entry
...
Fixed desktop entry of the app so that it shows up in the menu.
In place search and replace was implemented in the postInstall phase
using sed.
2023-08-01 11:05:59 +00:00
Robert Hensing
4c1d3cee60
treewide: Add meta.mainProgram
...
This should fix most warnings getExe in based on grepping `nixos/`.
2023-07-31 21:54:43 +02:00
github-actions[bot]
28f4120163
Merge master into staging-next
2023-07-31 06:01:30 +00:00
Nick Cao
33820c5186
Merge pull request #246153 from doronbehar/pkg/musescore
...
musescore: 4.1.0 -> 4.1.1
2023-07-30 18:21:02 -06:00
github-actions[bot]
1f2d6d5548
Merge master into staging-next
2023-07-30 12:01:17 +00:00
Doron Behar
bc2a487a98
Merge pull request #246066 from nh2/musescore-alsa-plugin-dir
...
musescore: Set ALSA_PLUGIN_DIR.
2023-07-30 06:52:27 +00:00
Doron Behar
5b9886e2c6
musescore: 4.1.0 -> 4.1.1
...
Diff: https://github.com/musescore/MuseScore/compare/v4.1.0...v4.1.1
2023-07-30 09:35:13 +03:00
github-actions[bot]
8d71f4929a
Merge master into staging-next
2023-07-30 06:01:07 +00:00
Martin Weinelt
167f6dfee4
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/libraries/science/astronomy/cfitsio/default.nix
2023-07-30 03:54:27 +02:00
Niklas Hambüchen
815295854d
musescore: Set ALSA_PLUGIN_DIR.
...
This allows sound to work with e.g. MuseScore via nix-shell on Ubuntu.
2023-07-29 17:58:27 +02:00
natsukium
e571bb68fd
feishin: fix darwin build
...
I think it still needs to be modified to actually work with darwin.
2023-07-29 22:08:14 +09:00
Jonas Heinrich
0b977622f6
Merge pull request #219005 from onny/feishin
...
feishin: init at 0.2.0
2023-07-29 14:43:36 +02:00
Jonas Heinrich
00bb7e7c4d
feishin: init at 0.2.0
2023-07-29 14:43:03 +02:00
Martin Weinelt
1021376e65
Merge pull request #244135 from NixOS/python-updates
...
Python updates 2023-07-18
2023-07-28 20:48:26 +02:00
github-actions[bot]
039200b6c4
Merge staging-next into staging
2023-07-28 18:01:52 +00:00
R. Ryantm
59524a3c60
bitwig-studio: 5.0 -> 5.0.4
2023-07-28 12:45:56 +00:00
Fabian Affolter
51db3f6c4a
ledfx: 2.0.67 -> 2.0.69
...
Changelog: https://github.com/LedFx/LedFx/blob/2.0.69/CHANGELOG.rst
2023-07-28 12:13:25 +02:00
Vladimír Čunát
1c0d654684
Merge #239191 : treewide: gobject-introspection from buildInputs to nativeBuildInputs
...
...into staging
2023-07-26 20:53:32 +02:00
Pol Dellaiera
ba7bf526d1
Merge pull request #245280 from r-ryantm/auto-update/reaper
...
reaper: 6.80 -> 6.81
2023-07-26 13:28:23 +02:00
R. Ryantm
38544a2d88
reaper: 6.80 -> 6.81
2023-07-25 01:31:34 +00:00
Pol Dellaiera
c86c68095a
Merge pull request #242071 from emilytrau/soundsource
...
soundsource: init at 5.6.0
2023-07-25 02:57:35 +02:00
figsoda
85eb9355b5
Merge pull request #245138 from r-ryantm/auto-update/cmusfm
...
cmusfm: 0.4.1 -> 0.5.0
2023-07-24 09:59:11 -04:00
Sefa Eyeoglu
c2089256f9
qpwgraph: 0.4.5 -> 0.5.1
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-07-24 13:44:53 +02:00
github-actions[bot]
aae1f8ef06
Merge master into staging-next
2023-07-24 06:01:13 +00:00
Nick Cao
54f3699f53
Merge pull request #245120 from samuela/upkeep-bot/plexamp-4.8.1-1690158474
...
plexamp: 4.7.4 -> 4.8.1
2023-07-23 22:38:14 -06:00
R. Ryantm
1d0b306466
cmusfm: 0.4.1 -> 0.5.0
2023-07-24 04:33:24 +00:00
Nick Cao
ac8e994687
Merge pull request #245106 from marsam/update-ncspot
...
ncspot: 0.13.3 -> 0.13.4
2023-07-23 19:06:47 -06:00
Nick Cao
e598d5b773
Merge pull request #244953 from tomfitzhenry/less-maintainership
...
remove tomfitzhenry@ as maintainer for some packages
2023-07-23 18:57:35 -06:00
nixpkgs-upkeep-bot
91fa204492
plexamp: 4.7.4 -> 4.8.1
2023-07-24 00:27:55 +00:00
github-actions[bot]
449a683b10
Merge master into staging-next
2023-07-24 00:02:26 +00:00
Mario Rodas
77a87373ae
ncspot: 0.13.3 -> 0.13.4
...
Diff: https://github.com/hrkfdn/ncspot/compare/v0.13.3...v0.13.4
Changelog: https://github.com/hrkfdn/ncspot/releases/tag/v0.13.4
2023-07-23 19:00:03 -05:00
Sandro
f35df548eb
Merge pull request #243116 from ners/pianoteq
...
pianoteq.standard-8: init at 8.1.1
2023-07-23 23:38:52 +02:00
Mario Rodas
919e734c96
Merge pull request #244872 from r-ryantm/auto-update/airwindows-lv2
...
airwindows-lv2: 18.0 -> 20.0
2023-07-23 16:36:40 -05:00
Sandro
1d1fe1fe14
Merge pull request #245063 from SuperSandro2000/remove-maintainer
...
treewide: reduce packages I maintainer
2023-07-23 21:28:26 +02:00
Thiago Kenji Okada
bfe2d74421
Merge pull request #242568 from FabianPonce/update-spotify-darwin
...
spotify: 1.1.97.962.g24733a46 -> 1.2.15.828.g79f41970
2023-07-23 19:04:26 +00:00
github-actions[bot]
6afe543aec
Merge master into staging-next
2023-07-23 18:01:33 +00:00
Fabian Ponce
0d561b5151
spotify: 1.1.97.962 -> 1.2.15.828
2023-07-23 13:54:56 -04:00
Sandro Jäckel
cf6c96533b
treewide: reduce packages I maintainer
2023-07-23 19:30:22 +02:00
Christoph Neidahl
d3d9204ce5
milkytracker: adopt, 1.03.00 -> 1.04.00 ( #241669 )
...
* milkytracker: adopt, 1.03.00 -> 1.04.00
* milkytracker: Add Darwin support
* milkytracker: Mark Darwin broken
Only thing that doesn't build are some resource files which require Xcode for ibtool.
I don't have it, and Ofborg seemingly doesn't have it either, so I can't get it to build.
* milkytracker: Remove SDL2MAIN_LIBRARY flag
Doesn't seem necessary anymore?
2023-07-23 18:21:14 +02:00
Sandro
b927535a4e
Merge pull request #243019 from OPNA2608/update/famistudio
...
famistudio: 4.0.6 -> 4.1.1
2023-07-23 18:18:37 +02:00
Sandro
2d75e58c87
Merge pull request #241491 from zendo/upd/podcasts
...
gnome-podcasts: 0.5.1 -> 0.6.0
2023-07-23 17:56:45 +02:00
Tom Fitzhenry
cb470d61c3
remove tomfitzhenry@ as maintainer for some packages
...
Motivation: Over the foreseeable future I'll have less time to do
maintenance, so I'm reducing the set of packages I maintain to just
those that I use.
2023-07-23 12:39:57 +10:00
R. Ryantm
f16a8470d6
airwindows-lv2: 18.0 -> 20.0
2023-07-22 18:08:16 +00:00
OPNA2608
99a726ba3c
famistudio: 4.1.0 -> 4.1.1
2023-07-22 13:54:27 +02:00
ners
d4d79d4b8c
pianoteq: add desktop file
2023-07-21 16:06:43 +02:00
ners
c71cba712e
pianoteq.standard-8: init at 8.1.1
2023-07-21 16:06:43 +02:00
github-actions[bot]
a400aea596
Merge master into staging-next
2023-07-21 12:01:17 +00:00
Thomas Gerbet
9140559dd1
faust1: drop
...
Upstream does not seem to have released a 0.9.x/1.x version since
2016 while faust 2.x is actively maintained.
No package depend on it anymore.
2023-07-21 07:02:05 -03:00
PowerUser64
bb5ead49eb
lsp-plugins: 1.2.7 -> 1.2.8
2023-07-21 01:44:01 -07:00
github-actions[bot]
b6ae9ef2db
Merge master into staging-next
2023-07-20 06:01:21 +00:00
Nick Cao
c77cd042e3
Merge pull request #239267 from evils/rew
...
roomeqwizard: 5.20.5 -> 5.20.13
2023-07-19 19:24:22 -06:00
Nick Cao
b10dfc8570
Merge pull request #222948 from iwanb/transcribeup
...
transcribe: 9.21 -> 9.25
2023-07-19 19:04:48 -06:00
github-actions[bot]
2c5b83e75c
Merge master into staging-next
2023-07-19 18:01:04 +00:00
Sandro
69deaa75e1
Merge pull request #243018 from tjni/nix-prefetch-github
2023-07-19 14:51:30 +02:00
Linus Heckemann
a31836f113
Merge pull request #244257 from IreneKnapp/tenacity
...
tenacity: 1.3-beta2 -> 1.3.1
2023-07-19 14:23:36 +02:00
github-actions[bot]
b110c513b2
Merge master into staging-next
2023-07-19 12:01:12 +00:00
Irene Knapp
9e011fc60c
tenacity: 1.3-beta2 -> 1.3.1
2023-07-18 19:15:56 -07:00
R. Ryantm
e482beb77b
qpwgraph: 0.4.4 -> 0.4.5
2023-07-19 02:07:48 +00:00
github-actions[bot]
7f01b5d24b
Merge master into staging-next
2023-07-19 00:02:11 +00:00
Theodore Ni
c249486edb
squeezelite: adapt update script to new nix-prefetch-github
2023-07-18 16:55:33 -07:00
Theodore Ni
e2e1dd7d0a
psst: adapt update script to new nix-prefetch-github
2023-07-18 16:55:32 -07:00
Sandro
09bdd62713
Merge pull request #240537 from Philipp-M/bitwig-studio5
...
bitwig-studio5: init at 5.0
2023-07-18 23:04:25 +02:00
github-actions[bot]
acbec64db0
Merge master into staging-next
2023-07-18 18:01:26 +00:00