2021-06-13 12:53:30 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, installShellFiles, libpulseaudio, nas }:
|
2017-01-25 20:59:27 +00:00
|
|
|
|
2021-06-13 12:53:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gbsplay";
|
|
|
|
version = "0.0.94";
|
2017-01-25 20:59:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mmitch";
|
|
|
|
repo = "gbsplay";
|
2021-06-13 12:53:30 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "VpaXbjotmc/Ref1geiKkBX9UhbPxfAGkFAdKVxP8Uxo=";
|
2017-01-25 20:59:27 +00:00
|
|
|
};
|
|
|
|
|
2021-06-13 12:53:30 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--without-test" # See mmitch/gbsplay#62
|
|
|
|
"--without-contrib"
|
|
|
|
];
|
2020-04-09 07:41:41 +01:00
|
|
|
|
2021-06-13 12:53:30 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = [ libpulseaudio nas ];
|
2017-01-25 20:59:27 +00:00
|
|
|
|
2021-06-13 12:53:30 +01:00
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --bash --name gbsplay contrib/gbsplay.bashcompletion
|
|
|
|
'';
|
2017-01-25 20:59:27 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-06-13 12:53:30 +01:00
|
|
|
description = "Gameboy sound player";
|
2017-01-25 20:59:27 +00:00
|
|
|
license = licenses.gpl1;
|
2021-06-13 12:53:30 +01:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2017-01-25 20:59:27 +00:00
|
|
|
maintainers = with maintainers; [ dasuxullebt ];
|
|
|
|
};
|
|
|
|
}
|