gbsplay: init at version 2016-12-17
This commit is contained in:
parent
d01b9493c9
commit
74e6aa7de6
36
pkgs/applications/audio/gbsplay/default.nix
Normal file
36
pkgs/applications/audio/gbsplay/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchFromGitHub, libpulseaudio }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gbsplay-2016-12-17";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mmitch";
|
||||
repo = "gbsplay";
|
||||
rev = "2c4486e17fd4f4cdea8c3fd79ae898c892616b70";
|
||||
sha256 = "1214j67sr87zfhvym41cw2g823fmqh4hr451r7y1s9ql3jpjqhpz";
|
||||
};
|
||||
|
||||
buildInputs = [ libpulseaudio ];
|
||||
|
||||
#CFLAGS = "-I${libpulseaudio}/include";
|
||||
#LDFLAGS = "-L${libpulseaudio}/lib";
|
||||
|
||||
# preConfigure = ''
|
||||
# sed -i "s:check_include pulse/simple.h:check_include pulse/simple.h ${libpulseaudio}/include:" ./configure;
|
||||
# '';
|
||||
|
||||
configureFlagsArray = [
|
||||
"--without-test" "--without-contrib" "--disable-devdsp"
|
||||
"--enable-pulse" "--disable-alsa" "--disable-midi" "--disable-nas"
|
||||
"--disable-dsound" "--disable-i18n"
|
||||
];
|
||||
|
||||
makeFlagsArray = [ "tests=" ];
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "gameboy sound player";
|
||||
license = licenses.gpl1;
|
||||
maintainers = with maintainers; [ dasuxullebt ];
|
||||
};
|
||||
}
|
@ -862,6 +862,8 @@ with pkgs;
|
||||
|
||||
fzy = callPackage ../tools/misc/fzy { };
|
||||
|
||||
gbsplay = callPackage ../applications/audio/gbsplay { };
|
||||
|
||||
gdrivefs = python27Packages.gdrivefs;
|
||||
|
||||
go-dependency-manager = callPackage ../development/tools/gdm { };
|
||||
|
Loading…
Reference in New Issue
Block a user