mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
SDL_sound: enable on Darwin
This commit is contained in:
parent
316ad96256
commit
b3e2a48453
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, SDL, libvorbis, flac, libmikmod }:
|
||||
{ stdenv, lib, fetchurl, SDL, libvorbis, flac, libmikmod }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "SDL_sound-${version}";
|
||||
@ -11,9 +11,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ SDL libvorbis flac libmikmod ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
|
||||
|
||||
meta = with lib; {
|
||||
description = "SDL sound library";
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.unix;
|
||||
license = licenses.lgpl21;
|
||||
homepage = https://www.icculus.org/SDL_sound/;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user