libmatemixer: init at 1.18.0
This commit is contained in:
parent
75d643ee83
commit
20f3dfd579
@ -11,6 +11,7 @@ rec {
|
|||||||
engrampa = callPackage ./engrampa { };
|
engrampa = callPackage ./engrampa { };
|
||||||
eom = callPackage ./eom { };
|
eom = callPackage ./eom { };
|
||||||
libmatekbd = callPackage ./libmatekbd { };
|
libmatekbd = callPackage ./libmatekbd { };
|
||||||
|
libmatemixer = callPackage ./libmatemixer { };
|
||||||
mate-common = callPackage ./mate-common { };
|
mate-common = callPackage ./mate-common { };
|
||||||
mate-desktop = callPackage ./mate-desktop { };
|
mate-desktop = callPackage ./mate-desktop { };
|
||||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||||
@ -22,6 +23,7 @@ rec {
|
|||||||
basePackages = [
|
basePackages = [
|
||||||
caja
|
caja
|
||||||
libmatekbd
|
libmatekbd
|
||||||
|
libmatemixer
|
||||||
mate-common
|
mate-common
|
||||||
mate-desktop
|
mate-desktop
|
||||||
mate-icon-theme
|
mate-icon-theme
|
||||||
|
33
pkgs/desktops/mate/libmatemixer/default.nix
Normal file
33
pkgs/desktops/mate/libmatemixer/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, glib
|
||||||
|
, alsaSupport ? stdenv.isLinux, alsaLib
|
||||||
|
, pulseaudioSupport ? stdenv.config.pulseaudio or true, libpulseaudio
|
||||||
|
, ossSupport ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libmatemixer-${version}";
|
||||||
|
version = "${major-ver}.${minor-ver}";
|
||||||
|
major-ver = "1.18";
|
||||||
|
minor-ver = "0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||||
|
sha256 = "09vyxnlnalws318gsafdfi5c6jwpp92pbafn1ddlqqds23ihk4mr";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
|
|
||||||
|
buildInputs = [ glib ]
|
||||||
|
++ stdenv.lib.optional alsaSupport alsaLib
|
||||||
|
++ stdenv.lib.optional pulseaudioSupport libpulseaudio;
|
||||||
|
|
||||||
|
configureFlags = stdenv.lib.optional ossSupport "--enable-oss";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Mixer library for MATE";
|
||||||
|
homepage = https://github.com/mate-desktop/libmatemixer;
|
||||||
|
license = with licenses; [ gpl2 lgpl2 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user