Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
2025-04-08 02:57:25 -04:00

61 lines
1.2 KiB
Nix

{
config,
lib,
stdenv,
fetchFromGitHub,
alsa-lib,
autoconf,
automake,
libpulseaudio,
libtool,
pkg-config,
portaudio,
which,
pulseaudioSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pcaudiolib";
version = "1.3";
src = fetchFromGitHub {
owner = "espeak-ng";
repo = "pcaudiolib";
rev = finalAttrs.version;
hash = "sha256-bBiGvAySEwAv6Qj2iSawb9oZfMCGBDCDIP8AYdbtQQc=";
};
nativeBuildInputs = [
autoconf
automake
libtool
pkg-config
which
];
buildInputs =
[
portaudio
]
++ lib.optional stdenv.hostPlatform.isLinux alsa-lib
++ lib.optional pulseaudioSupport libpulseaudio;
# touch ChangeLog to avoid below error on darwin:
# Makefile.am: error: required file './ChangeLog.md' not found
preConfigure =
lib.optionalString stdenv.hostPlatform.isDarwin ''
touch ChangeLog
''
+ ''
./autogen.sh
'';
meta = with lib; {
homepage = "https://github.com/espeak-ng/pcaudiolib";
description = "Provides a C API to different audio devices";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aske ];
platforms = platforms.unix;
};
})