Commit Graph

36 Commits

Author SHA1 Message Date
Alyssa Ross
df26977114 pkgsStatic.sox: fix 2024-05-13 09:05:55 +00:00
Alyssa Ross
02217618d3 sox: enable parallel building
Tested at -j64.
2023-12-28 15:03:33 +01:00
Alyssa Ross
fd41fdd34a sox: fix build with enableOpusfile = false
pkg-config seems to now always be required.
2023-12-26 17:19:32 +01:00
Doron Behar
908a6c4ad9 sox: use fetchgit instead of sourceforge unreliable snapshot url
See also discussion at: https://github.com/NixOS/nixpkgs/pull/240866
2023-07-02 16:31:42 +03:00
Ferry Jérémie
65d7e87fdb treewide: replace http by https when https is a permanent redirection 2023-01-22 02:46:49 +01:00
Martin Weinelt
73acdd0f22
sox: create dev, lib and man outputs 2022-12-15 01:37:19 +01:00
Artturin
7e49471316 treewide: optional -> optionals where the argument is a list
the argument to optional should not be list
2022-10-10 15:40:21 +03:00
Fabian Affolter
1c6c209867 sox: update hash 2022-03-11 13:16:02 +01:00
Robert Scott
07c201917c sox: 14.4.2 -> unstable-2021-05-09 2022-01-25 21:46:26 +00:00
Sandro Jäckel
d81070c891
sox: remove ? null from inputs, cleanup meta, enable pulseaudio only on linux 2021-11-09 10:14:18 +01:00
Felix Bühler
fbdf78236a
pkgs/applications: rename name to pname&version part 1 (#144949)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-11-07 21:29:51 +01:00
AndersonTorres
e9e5f5f84d Change all alsaLib references to alsa-lib 2021-06-10 01:12:49 -03:00
Walter Franzini
42e689e5bd sox: musl does not support pipe rewind
Disable the pipe rewind related feature since musl has no support for it.
2021-02-12 11:06:29 +01:00
Ben Siraphob
5d566c43b4 pkgs/applications: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
Ben Siraphob
108bdac3d9 pkgs/applications: stdenv.lib -> lib 2021-01-15 14:24:03 +07:00
Aluísio Augusto Silva Gonçalves
09f5becdd0
sox: Add WavPack support
r128gain's tests include processing some WavPack files with sox.  Allow
opting into linking with wavpack so those tests can be run.
2020-06-12 03:30:46 -03:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Artemis Tosini
508555518d
sox: Add option to include opus support
Many other distributions include opus support in their sox
distributions. This patch makes such an option, and sets it
to be enabled by default. This works when ogg is disabled as
as well as when ogg is enabled.
2019-04-29 14:23:39 +00:00
Väinö Järvelä
3cc74c3a7c Add CoreAudio to sox on macOS
Otherwise no audio devices are available for recording and playback on
macOS.
2019-03-18 20:17:40 +02:00
Jan Malakhovski
5bcd73c73b sox: move defaults to package file 2019-02-03 15:33:32 +00:00
Eric Litak
92a8c86647 sox: added enableLibpulseaudio option 2017-03-24 07:55:04 -07:00
taku0
e48c2d520e sox: enable libsndfile, amr-nb, amr-wb (close #9824) 2015-09-22 08:11:04 +02:00
taku0
cec63e87a2 sox: 14.4.1 -> 14.4.2 2015-09-12 20:49:41 +09:00
Shea Levy
145768bf9b Unmaintain a bunch of packages 2015-07-01 08:11:05 -04:00
James Cook
721635b0dd sox: Change homepage
The page at mega-nerd.com does not seem to be about sox at all.
2015-02-15 00:36:42 -08:00
James Cook
cf11e28599 sox: Patches for CVE-2014-8145
Found via RedHat bug 1174792.  It was not clear whether these address a
NULL dereference and a division by zero.
2015-02-15 00:12:29 -08:00
aszlig
0ffa7dc0f2
sox: Enable support for FLAC and PNG.
In case you wonder: PNG support is needed for example to generate
spectograms.

For example:

sox shiny-song.flac -n spectrogram -o even-shinier.png

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2014-08-29 20:21:10 +02:00
Eelco Dolstra
7cfb9545c6 sox: Fix building on Darwin
Fixes #3493.
2014-08-08 18:16:56 +02:00
Shea Levy
ff6febb75d sox: Update, get rid of composableDerivation 2014-03-24 12:01:20 -04:00
Eelco Dolstra
4bf5b0d36b * Fix some more "args: with args".
svn path=/nixpkgs/trunk/; revision=22828
2010-07-30 14:47:23 +00:00
Marc Weber
523d1b8216 updating sox, adding maintainer, enabling mp3 support
svn path=/nixpkgs/trunk/; revision=17864
2009-10-18 04:43:56 +00:00
Eelco Dolstra
d3f5d94ac7 * Fix some attributes that now make nix-env -q --meta barf.
svn path=/nixpkgs/trunk/; revision=16134
2009-07-02 09:08:01 +00:00
Marc Weber
b56ed35851 replacing applyAndFun by lib.defaultOverridableDelayableArgs
applyAndFun has a bug resulting in the same arg beeing added more than
once when using a concatenating merge function for the attr set.

I've tried giving the function a name "overridableDelayableArgs" which
resembles its usage much more.

important refactoring:
  applyAndFun had .fun and .funMerge only when passing the merge
  function lib.mergeOrApply

  composableDerivation {
    initial = {
      ...
    };
  }

to

  overridableDelayableArgs has always .replace and .merge
  composableDerivation {} {
    ...
  }

svn path=/nixpkgs/trunk/; revision=14428
2009-03-06 23:21:28 +00:00
Marc Weber
e996113be7 removed mkDerivationByConfiguration, using composableDerivation instead
qgis, vim_configurable both work now

svn path=/nixpkgs/trunk/; revision=13661
2008-12-20 01:20:35 +00:00
Michael Raskin
41ecc6941b svn path=/nixpkgs/trunk/; revision=9861 2007-12-04 22:06:13 +00:00
Marc Weber
e87c6a6793 sox, ffmpeg_svn expressions added
ghcPkgUtil defines a function to create setup-hook 
- creating a packagedatabase (nix-support/package.conf)
- adding it to GHC_PACKAGE_PATH
see comments for details

svn path=/nixpkgs/trunk/; revision=9500
2007-10-22 00:51:40 +00:00