nixpkgs/pkgs/applications/audio/gbsplay/default.nix

29 lines
764 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libpulseaudio }:
2017-01-25 20:59:27 +00:00
stdenv.mkDerivation {
name = "gbsplay-2016-12-17";
src = fetchFromGitHub {
owner = "mmitch";
repo = "gbsplay";
rev = "2c4486e17fd4f4cdea8c3fd79ae898c892616b70";
sha256 = "1214j67sr87zfhvym41cw2g823fmqh4hr451r7y1s9ql3jpjqhpz";
};
buildInputs = [ libpulseaudio ];
configureFlags =
2017-01-25 23:41:54 +00:00
[ "--without-test" "--without-contrib" "--disable-devdsp"
"--enable-pulse" "--disable-alsa" "--disable-midi"
"--disable-nas" "--disable-dsound" "--disable-i18n" ];
2017-01-25 20:59:27 +00:00
makeFlags = [ "tests=" ];
2017-01-25 20:59:27 +00:00
meta = with lib; {
2017-01-25 20:59:27 +00:00
description = "gameboy sound player";
license = licenses.gpl1;
2017-01-25 23:41:54 +00:00
platforms = ["i686-linux" "x86_64-linux"];
2017-01-25 20:59:27 +00:00
maintainers = with maintainers; [ dasuxullebt ];
};
}