fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchFromGitHub, alsaLib, cmake, pkgconfig, glib }:
2
3stdenv.mkDerivation rec {
4 name = "apulse-${version}";
5 version = "0.1.6";
6
7 src = fetchFromGitHub {
8 owner = "i-rinat";
9 repo = "apulse";
10 rev = "v${version}";
11 sha256 = "1w0mqa8gcrvvlns3pryhmlsc0g1irdnwsawx4g34wgwrp9paqqzm";
12 };
13
14 buildInputs =
15 [ alsaLib cmake pkgconfig glib ];
16
17 meta = with stdenv.lib; {
18 description = "PulseAudio emulation for ALSA";
19 homepage = https://github.com/i-rinat/apulse;
20 license = licenses.mit;
21 platforms = platforms.linux;
22 maintainers = [ maintainers.jagajaga ];
23 };
24}