about summary refs log tree commit diff
path: root/pkgs/desktops/xfce-4/applications/xfce4-mixer.nix
blob: db28274be0722e3d6e2b07db3cc4df73154da378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv, fetchurl, pkgconfig, intltool, glib, gst_all, gtk
, libxfce4util, libxfcegui4, xfce4panel, xfconf, makeWrapper }:

let

  # The usual Gstreamer plugins package has a zillion dependencies
  # that we don't need for a simple mixer, so build a minimal package.
  gstPluginsBase = gst_all.gstPluginsBase.override {
    minimalDeps = true;
  };

in

stdenv.mkDerivation rec {
  name = "xfce4-mixer-4.6.1";
  
  src = fetchurl {
    url = "http://archive.xfce.org/src/apps/xfce4-mixer/4.6/${name}.tar.bz2";
    sha1 = "e86163782fc4fc31671c7cb212d23d34106ad3af";
  };

  buildInputs =
    [ pkgconfig intltool glib gst_all.gstreamer gstPluginsBase gtk
      libxfce4util libxfcegui4 xfce4panel xfconf makeWrapper
    ];

  postInstall =
    ''
      mkdir -p $out/nix-support
      echo ${gstPluginsBase} > $out/nix-support/propagated-user-env-packages
    '';

  meta = {
    homepage = http://www.xfce.org/projects/xfce4-mixer;
    description = "A volume control application for the Xfce desktop environment";
    license = "GPLv2+";
  };
}