lol

apulse: add pkg

Closes #4488

authored by

Arseniy Seroka and committed by
Mateusz Kowalczyk
b8252a44 f5223442

+26 -1
+1
lib/maintainers.nix
··· 67 ianwookim = "Ian-Woo Kim <ianwookim@gmail.com>"; 68 iElectric = "Domen Kozar <domen@dev.si>"; 69 iyzsong = "Song Wenwu <iyzsong@gmail.com>"; 70 jcumming = "Jack Cummings <jack@mudshark.org>"; 71 jgeerds = "Jascha Geerds <jg@ekby.de>"; 72 joamaki = "Jussi Maki <joamaki@gmail.com>";
··· 67 ianwookim = "Ian-Woo Kim <ianwookim@gmail.com>"; 68 iElectric = "Domen Kozar <domen@dev.si>"; 69 iyzsong = "Song Wenwu <iyzsong@gmail.com>"; 70 + jagajaga = "Arseniy Seroka <ars.seroka@gmail.com>"; 71 jcumming = "Jack Cummings <jack@mudshark.org>"; 72 jgeerds = "Jascha Geerds <jg@ekby.de>"; 73 joamaki = "Jussi Maki <joamaki@gmail.com>";
+1 -1
pkgs/applications/audio/moc/default.nix
··· 21 description = "An ncurses console audio player designed to be powerful and easy to use"; 22 homepage = http://moc.daper.net/; 23 license = licenses.gpl2; 24 - maintainers = with maintainers; [ pSub ]; 25 platforms = platforms.linux; 26 }; 27 }
··· 21 description = "An ncurses console audio player designed to be powerful and easy to use"; 22 homepage = http://moc.daper.net/; 23 license = licenses.gpl2; 24 + maintainers = with maintainers; [ pSub jagajaga ]; 25 platforms = platforms.linux; 26 }; 27 }
+22
pkgs/misc/apulse/default.nix
···
··· 1 + { stdenv, fetchurl, alsaLib, cmake, pkgconfig, glib }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "apulse-${version}"; 5 + version = "0.1.2"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/i-rinat/apulse/archive/v${version}.tar.gz"; 9 + sha256 = "02906a8iwwjzzkjvhqqai2yd1636cgz9vl69vwq0vkv2v6cn21ky"; 10 + }; 11 + 12 + buildInputs = 13 + [ alsaLib cmake pkgconfig glib ]; 14 + 15 + meta = with stdenv.lib; { 16 + description = "PulseAudio emulation for ALSA."; 17 + homepage = "https://github.com/i-rinat/apulse"; 18 + license = licenses.mit; 19 + platforms = platforms.linux; 20 + maintainers = [ maintainers.jagajaga ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 476 477 apt-offline = callPackage ../tools/misc/apt-offline { }; 478 479 archivemount = callPackage ../tools/filesystems/archivemount { }; 480 481 arandr = callPackage ../tools/X11/arandr { };
··· 476 477 apt-offline = callPackage ../tools/misc/apt-offline { }; 478 479 + apulse = callPackage ../misc/apulse { }; 480 + 481 archivemount = callPackage ../tools/filesystems/archivemount { }; 482 483 arandr = callPackage ../tools/X11/arandr { };