biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / gbsplay / default.nix
blob5c7d302346e3470e2e845e2edc635dc7c33370d8
1 { lib, stdenv, fetchFromGitHub, installShellFiles, libpulseaudio, nas }:
3 stdenv.mkDerivation rec {
4   pname = "gbsplay";
5   version = "0.0.97";
7   src = fetchFromGitHub {
8     owner = "mmitch";
9     repo = "gbsplay";
10     rev = version;
11     sha256 = "sha256-O4t5OzXcrGoxzSXr0nzc01bItjcp1LvFeWnbdSUDwFU=";
12   };
14   configureFlags = [
15     "--without-test" # See mmitch/gbsplay#62
16     "--without-contrib"
17   ];
19   nativeBuildInputs = [ installShellFiles ];
20   buildInputs = [ libpulseaudio nas ];
22   postInstall = ''
23     installShellCompletion --bash --name gbsplay contrib/gbsplay.bashcompletion
24   '';
26   meta = with lib; {
27     description = "Gameboy sound player";
28     license = licenses.gpl1Plus;
29     platforms = [ "i686-linux" "x86_64-linux" ];
30     maintainers = with maintainers; [ ];
31   };