summary refs log tree commit diff
diff options
context:
space:
mode:
authorAxel Forsman <axelsfor@gmail.com>2021-06-13 13:53:30 +0200
committerAxel Forsman <axelsfor@gmail.com>2021-06-13 14:37:18 +0200
commit96e9be097b4a21bf2f010c4a542bc699b4d8126b (patch)
tree1e067877c9546ce15401c8a584f2824b2c9fefe5
parentabd57b544e59b54a24f930899329508aa3ec3b17 (diff)
downloadnixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar.gz
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar.bz2
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar.lz
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar.xz
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.tar.zst
nixpkgs-96e9be097b4a21bf2f010c4a542bc699b4d8126b.zip
gbsplay: 2016-12-17 -> 0.0.94
Add the "nas" output plugin. Remove configure flags since those should
get detected automatically. Install bash completions. Format through
nixpkgs-fmt.
-rw-r--r--pkgs/applications/audio/gbsplay/default.nix30
1 files changed, 17 insertions, 13 deletions
diff --git a/pkgs/applications/audio/gbsplay/default.nix b/pkgs/applications/audio/gbsplay/default.nix
index 7cee125f6e7..3d280ca72ab 100644
--- a/pkgs/applications/audio/gbsplay/default.nix
+++ b/pkgs/applications/audio/gbsplay/default.nix
@@ -1,28 +1,32 @@
-{ lib, stdenv, fetchFromGitHub, libpulseaudio }:
+{ lib, stdenv, fetchFromGitHub, installShellFiles, libpulseaudio, nas }:
 
-stdenv.mkDerivation {
-  name = "gbsplay-2016-12-17";
+stdenv.mkDerivation rec {
+  pname = "gbsplay";
+  version = "0.0.94";
 
   src = fetchFromGitHub {
     owner = "mmitch";
     repo = "gbsplay";
-    rev = "2c4486e17fd4f4cdea8c3fd79ae898c892616b70";
-    sha256 = "1214j67sr87zfhvym41cw2g823fmqh4hr451r7y1s9ql3jpjqhpz";
+    rev = version;
+    sha256 = "VpaXbjotmc/Ref1geiKkBX9UhbPxfAGkFAdKVxP8Uxo=";
   };
 
-  buildInputs = [ libpulseaudio ];
+  configureFlags = [
+    "--without-test" # See mmitch/gbsplay#62
+    "--without-contrib"
+  ];
 
-  configureFlags =
-   [ "--without-test" "--without-contrib" "--disable-devdsp"
-     "--enable-pulse" "--disable-alsa" "--disable-midi"
-     "--disable-nas" "--disable-dsound" "--disable-i18n" ];
+  nativeBuildInputs = [ installShellFiles ];
+  buildInputs = [ libpulseaudio nas ];
 
-  makeFlags = [ "tests=" ];
+  postInstall = ''
+    installShellCompletion --bash --name gbsplay contrib/gbsplay.bashcompletion
+  '';
 
   meta = with lib; {
-    description = "gameboy sound player";
+    description = "Gameboy sound player";
     license = licenses.gpl1;
-    platforms = ["i686-linux" "x86_64-linux"];
+    platforms = [ "i686-linux" "x86_64-linux" ];
     maintainers = with maintainers; [ dasuxullebt ];
   };
 }