Merge pull request #126752 from axelf4/gbsplay-0.0.94

gbsplay: 2016-12-17 -> 0.0.94

authored by

Sandro and committed by
GitHub
d4acb6b9 e8d07ac0

+17 -13
+17 -13
pkgs/applications/audio/gbsplay/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libpulseaudio }: 2 3 - stdenv.mkDerivation { 4 - name = "gbsplay-2016-12-17"; 5 6 src = fetchFromGitHub { 7 owner = "mmitch"; 8 repo = "gbsplay"; 9 - rev = "2c4486e17fd4f4cdea8c3fd79ae898c892616b70"; 10 - sha256 = "1214j67sr87zfhvym41cw2g823fmqh4hr451r7y1s9ql3jpjqhpz"; 11 }; 12 13 - buildInputs = [ libpulseaudio ]; 14 15 - configureFlags = 16 - [ "--without-test" "--without-contrib" "--disable-devdsp" 17 - "--enable-pulse" "--disable-alsa" "--disable-midi" 18 - "--disable-nas" "--disable-dsound" "--disable-i18n" ]; 19 20 - makeFlags = [ "tests=" ]; 21 22 meta = with lib; { 23 - description = "gameboy sound player"; 24 license = licenses.gpl1; 25 - platforms = ["i686-linux" "x86_64-linux"]; 26 maintainers = with maintainers; [ dasuxullebt ]; 27 }; 28 }
··· 1 + { lib, stdenv, fetchFromGitHub, installShellFiles, libpulseaudio, nas }: 2 3 + stdenv.mkDerivation rec { 4 + pname = "gbsplay"; 5 + version = "0.0.94"; 6 7 src = fetchFromGitHub { 8 owner = "mmitch"; 9 repo = "gbsplay"; 10 + rev = version; 11 + sha256 = "VpaXbjotmc/Ref1geiKkBX9UhbPxfAGkFAdKVxP8Uxo="; 12 }; 13 14 + configureFlags = [ 15 + "--without-test" # See mmitch/gbsplay#62 16 + "--without-contrib" 17 + ]; 18 19 + nativeBuildInputs = [ installShellFiles ]; 20 + buildInputs = [ libpulseaudio nas ]; 21 22 + postInstall = '' 23 + installShellCompletion --bash --name gbsplay contrib/gbsplay.bashcompletion 24 + ''; 25 26 meta = with lib; { 27 + description = "Gameboy sound player"; 28 license = licenses.gpl1; 29 + platforms = [ "i686-linux" "x86_64-linux" ]; 30 maintainers = with maintainers; [ dasuxullebt ]; 31 }; 32 }