Skip to content

Commit

Permalink
faun: init at 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mausch committed Oct 7, 2023
1 parent 08f2375 commit 78c0f41
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/development/libraries/audio/faun/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ stdenv
, lib
, fetchFromGitHub
, libpulseaudio
, libvorbis
}:

stdenv.mkDerivation rec {
pname = "faun";
version = "0.1.4";

src = fetchFromGitHub {
owner = "WickedSmoke";
repo = pname;
rev = "v${version}";
hash = "sha256-XfblM/EKd0fa8CHKpTLUTi7BTj8ASh6v/Mgu6W3RvOI=";
};

buildInputs = [
libpulseaudio
libvorbis
];

configurePhase = ''
patchShebangs .
./configure --prefix $out
'';

meta = with lib;{
homepage = "https://github.com/WickedSmoke/faun";
description = "A high-level C audio library";
license = lib.licenses.gpl2Plus;
maintainers = with maintainers; [ mausch ];
platforms = with platforms; unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20926,6 +20926,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio CoreServices;
};

faun = callPackage ../development/libraries/audio/faun { };

hercules-ci-agent = callPackage ../development/tools/continuous-integration/hercules-ci-agent { };

hci = callPackage ../development/tools/continuous-integration/hci { };
Expand Down

0 comments on commit 78c0f41

Please sign in to comment.