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: fa2e4bfb61cc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 51acfce682bd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 2, 2019

  1. pulsemixer: 1.4.0 -> 1.5.0

    dywedir committed Jun 2, 2019
    Copy the full SHA
    f77faeb View commit details

Commits on Jun 3, 2019

  1. Merge pull request #62504 from dywedir/pulsemixer

    pulsemixer: 1.4.0 -> 1.5.0
    Ma27 authored Jun 3, 2019
    Copy the full SHA
    51acfce View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/tools/audio/pulsemixer/default.nix
5 changes: 2 additions & 3 deletions pkgs/tools/audio/pulsemixer/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{ stdenv, fetchFromGitHub, python3, libpulseaudio }:

stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pulsemixer";
version = "1.4.0";
version = "1.5.0";

src = fetchFromGitHub {
owner = "GeorgeFilipkin";
repo = pname;
rev = version;
sha256 = "0l5zawv36d46sj3k31k5w6imnnxzyn62r83wdhr7fp5mi3ls1h5x";
sha256 = "162nfpyqn4gp45x332a73n07c118vispz3jicin4p67x3f8f0g3j";
};

inherit libpulseaudio;