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

Commits on Aug 20, 2019

  1. paprefs: clean up dependencies

    Since 1.1, paprefs no longer depends on dbus-glib but the dependencies
    were not refreshed during an automated update.
    
    While at it, also format inputs for diff-friendliness.
    jtojnar committed Aug 20, 2019
    Copy the full SHA
    012ff89 View commit details
  2. Merge pull request #67075 from jtojnar/paprefs-cleanup

    paprefs: clean up dependencies
    worldofpeace authored Aug 20, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    targos Michaël Zasso
    Copy the full SHA
    89da4d6 View commit details
Showing with 24 additions and 4 deletions.
  1. +24 −4 pkgs/applications/audio/paprefs/default.nix
28 changes: 24 additions & 4 deletions pkgs/applications/audio/paprefs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{ fetchurl, stdenv, meson, ninja, gettext, pkgconfig, pulseaudioFull, gtkmm3, dbus-glib, wrapGAppsHook }:
{ fetchurl
, stdenv
, meson
, ninja
, gettext
, pkgconfig
, pulseaudioFull
, glibmm
, gtkmm3
, wrapGAppsHook
}:

stdenv.mkDerivation rec {
name = "paprefs-1.1";
@@ -8,9 +18,19 @@ stdenv.mkDerivation rec {
sha256 = "189z5p20hk0xv9vwvym293503j4pwl03xqk9hl7cl6dwgv0l7wkf";
};

nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook ];

buildInputs = [ pulseaudioFull gtkmm3 dbus-glib ];
nativeBuildInputs = [
meson
ninja
gettext
pkgconfig
wrapGAppsHook
];

buildInputs = [
pulseaudioFull
glibmm
gtkmm3
];

meta = with stdenv.lib; {
description = "PulseAudio Preferences";