Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 669a6d0edb65
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c32ecb4b0efb
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 14, 2019

  1. luaPackages.pulseaudio: 0.1 -> 0.2

    doronbehar authored and Matthieu Coudron committed Nov 14, 2019
    Copy the full SHA
    c32ecb4 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/top-level/lua-packages.nix
4 changes: 2 additions & 2 deletions pkgs/top-level/lua-packages.nix
Original file line number Diff line number Diff line change
@@ -134,14 +134,14 @@ with self; {

pulseaudio = buildLuaPackage rec {
pname = "pulseaudio";
version = "0.1";
version = "0.2";
name = "pulseaudio-${version}";

src = fetchFromGitHub {
owner = "doronbehar";
repo = "lua-pulseaudio";
rev = "v${version}";
sha256 = "0vldm34m3ysgn8gvwfdglpw4jl5680fvfay7pzs14gzkzcvgv25b";
sha256 = "140y1m6k798c4w7xfl0zb0a4ffjz6i1722bgkdcdg8g76hr5r8ys";
};
disabled = (luaOlder "5.1") || (luaAtLeast "5.5");
buildInputs = [ pkgs.libpulseaudio ];