Silvan Mosberger
4f0dadbf38
treewide: format all inactive Nix files
...
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build a08b3a4d19
.tar.gz \
--argstr baseRev b32a094368
result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Daniel Løvbrøtte Olsen
f88f273291
Update liquidsoap and its dependencies ( #310112 )
...
* ocamlPackages.duppy: 0.9.3 -> 0.9.4
* ocamlPackages.ffmpeg: 1.1.8 -> 1.1.11
* ocamlPackages.lastfm: 0.3.3 -> 0.3.4
* ocamlPackages.uri: 4.2.0 -> 4.4.0
Diff: https://github.com/mirage/ocaml-uri/compare/None...v4.4.0
* ocamlPackages.gd4o: remove, ocamlPackages.gd: init at 1.1
* ocamlPackages.mad: 0.5.2 -> 0.5.3
Diff: https://github.com/savonet/ocaml-mad/compare/v0.5.2...v0.5.3
* ocamlPackages.tsdl-image: 0.5 -> 0.6
Diff: https://github.com/sanette/tsdl-image/compare/0.5...0.6
* liquidsoap: small package fixups
Diff: https://github.com/savonet/liquidsoap/compare/refs/tags/v2.2.4...v2.2.5
2024-05-21 07:38:49 +02:00
Emery Hemingway
5caf4b9c39
liquidsoap: add meta.changelog
2024-05-09 08:15:18 +00:00
R. Ryantm
1a964af2b2
liquidsoap: 2.2.4 -> 2.2.5
2024-05-09 08:15:18 +00:00
stuebinm
ff1a94e523
treewide: add meta.mainProgram to packages with a single binary
...
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Vincent Laporte
aae884c8a6
liquidsoap: 2.2.3 → 2.2.4
...
ocamlPackages.cry: 1.0.1 → 1.0.2
Support for gstreamer in liquidsoap has been removed in nixpkgs as:
- it does not build (see: liquidsoap PR 3769);
- it is deprecated.
2024-03-11 04:31:02 +01:00
R. Ryantm
22ffa7b32e
liquidsoap: 2.2.2 -> 2.2.3
2023-12-17 08:45:53 +00:00
Daniel Olsen
dd625809cf
liquidsoap: 2.1.4 -> 2.2.2
...
Diff: https://github.com/savonet/liquidsoap/compare/v2.1.4...v2.2.2
Cleans up the depencies, and swaps out youtube-dl for yt-dlp
2023-11-16 16:03:36 +01:00
Vincent Laporte
b56f06f3e8
ocamlPackages.camomile: 1.0.2 → 2.0.0
2023-10-02 08:21:20 +02:00
Daniel Olsen
f13bb7efd2
liquidsoap: 2.1.3 -> 2.1.4
...
ocamlPackages.srt: 0.2.2 -> 0.3.0
2023-03-30 16:22:22 +02:00
Ulrik Strid
376e9ceead
treewide: add strictDeps = true to most packages depending on ocaml
2023-02-03 08:59:34 +01:00
R. Ryantm
49c8d8d971
liquidsoap: 2.1.2 -> 2.1.3
2022-12-10 14:10:49 +00:00
Daniel Olsen
08b9a03470
liquidsoap: 2.0.6 -> 2.1.2
2022-10-06 09:38:19 +02:00
Daniel Olsen
057fb30998
liquidsoap: 2.0.5 -> 2.0.6
2022-06-21 20:29:14 -05:00
Daniel Olsen
a847787803
liquidsoap: 1.4.2 -> 2.0.5
2022-06-08 16:22:37 +02:00
Daniel Olsen
4ac4c52699
liquidsoap: pin srt dependency
2022-06-07 11:45:32 +02:00
Vincent Laporte
c25fcedaf0
liquidsoap: pin menhir dependency
2022-06-05 15:44:28 +02:00
Vincent Laporte
5637570f51
ocamlPackages: rename sedlex_2 into sedlex
2022-05-29 08:48:00 +02:00
AndersonTorres
e9e5f5f84d
Change all alsaLib references to alsa-lib
2021-06-10 01:12:49 -03:00
Vincent Laporte
5ca9831cb1
ocamlPackages.menhir: 20190626 → 20210419
...
ocamlPackages.menhirLib: init at 20210419
ocamlPackages.menhirSdk: init at 20210419
2021-06-05 13:38:01 +02:00
Jonathan Ringer
c695c26df2
liquidsoap: fix build, add missing zlib
2021-05-20 14:32:26 -07:00
Ben Siraphob
d6aeae8f90
pkgs/tools: pkgconfig -> pkg-config (2)
2021-01-17 23:27:27 +07:00
Profpatsch
4a7f99d55d
treewide: with stdenv.lib; in meta -> with lib;
...
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-11 10:38:22 +01:00
Vincent Laporte
bd954783b2
liquidsoap: 1.3.4 → 1.4.2
2020-09-07 15:18:31 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Bart Brouns
2d96b9a294
liquidsoap: make it find ladspa plugins ( #49891 )
...
* liquidsoap: make it find ladspa plugins
* liquidsoap: cleanup
Moved makeWrapper and pkgconfig to nativeBuildInputs
Refreshed meta.homepage
2018-11-17 15:25:23 +01:00
TG ⊗ Θ
d2ce22caf0
liquidsoap: 1.1.1 -> 1.3.4
2018-10-08 11:30:27 +02:00
Bart Brouns
3b32efff7e
WIP liquidsoap update
2018-10-04 02:37:12 +02:00
Vincent Laporte
1923cabeb4
ocamlPackages: default to 4.04
2017-10-19 17:57:14 +02:00
Nicolas B. Pierron
72c6f8a140
Ensure that we can evaluate the platform attribute of ocaml packages.
2016-03-13 19:08:26 +00:00
Emery Hemingway
2b6dcdfcd0
Rename 'emery' maintainer handle to 'ehmry', fixes #11493
...
Communication happens on Github so names should be consistent.
2015-12-05 23:06:20 +01:00
William A. Kennington III
7297255019
Convert all jack references to libjack2
2015-06-27 00:17:52 -07:00
William A. Kennington III
b07929b0a3
Use libpulseaudio instead of pulseaudio
2015-05-29 14:32:56 -07:00
Eelco Dolstra
2ed5c2bd6b
Set some meta.platforms
...
Also fix meta.platform -> meta.platforms in a few places.
2015-03-20 20:04:42 +01:00
Emery Hemingway
c1f458eb85
initial liquidsoap package expression
2014-11-20 17:34:14 -05:00