mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
libao: update to 1.2.0
This commit is contained in:
parent
18a91dcf99
commit
5fb879526d
@ -1,14 +1,15 @@
|
||||
{ lib, stdenv, fetchurl, pkgconfig, pulseaudio, alsaLib
|
||||
, usePulseAudio }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libao-1.1.0";
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.2.0";
|
||||
name = "libao-${version}";
|
||||
src = fetchurl {
|
||||
url = http://downloads.xiph.org/releases/ao/libao-1.1.0.tar.gz;
|
||||
sha256 = "1m0v2y6bhr4iwsgdkc7b3y0qgpvpv1ifbxsy8n8ahsvjn6wmppi9";
|
||||
url = "http://downloads.xiph.org/releases/ao/${name}.tar.gz";
|
||||
sha256 = "1bwwv1g9lchaq6qmhvj1pp3hnyqr64ydd4j38x94pmprs4d27b83";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
buildInputs =
|
||||
[ pkgconfig ] ++
|
||||
lib.optional stdenv.isLinux (if usePulseAudio then [ pulseaudio ] else [ alsaLib ]);
|
||||
|
||||
@ -19,6 +20,7 @@ stdenv.mkDerivation {
|
||||
platforms.
|
||||
'';
|
||||
homepage = http://xiph.org/ao/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user