Skip to content

Commit

Permalink
Merge pull request #67075 from jtojnar/paprefs-cleanup
Browse files Browse the repository at this point in the history
paprefs: clean up dependencies
  • Loading branch information
worldofpeace committed Aug 20, 2019
2 parents 03d3416 + 012ff89 commit 89da4d6
Showing 1 changed file with 24 additions and 4 deletions.
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";
Expand All @@ -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";
Expand Down

0 comments on commit 89da4d6

Please sign in to comment.