aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix
new file mode 100644
index 000000000000..e6dd48018e74
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/audio/squishyball/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, autoreconfHook, fetchsvn, flac, libao, libvorbis, ncurses
+, opusfile, pkgconfig
+}:
+
+stdenv.mkDerivation rec {
+ name = "squishyball-${rev}";
+ rev = "19580";
+
+ src = fetchsvn {
+ url = "https://svn.xiph.org/trunk/squishyball";
+ rev = rev;
+ sha256 = "013vq52q9z6kpg9iyc2jnb3m2gihcjblvwpg4yj4wy1q2c05pzqp";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = [ flac libao libvorbis ncurses opusfile ];
+
+ NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS";
+
+ patches = [ ./gnu-screen.patch ];
+
+ postInstall = ''
+ # Why doesn’t this happen automagically?
+ mkdir -p $out/share/man/man1
+ cp squishyball.1 $out/share/man/man1
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A tool to perform sample comparison testing on the command line";
+ longDescription = ''
+ squishyball is a simple command-line utility for performing
+ double-blind A/B, A/B/X or X/X/Y testing on the command line.
+ The user specifies two input files to be compared and uses the
+ keyboard during playback to flip between the randomized samples
+ to perform on-the-fly compar‐ isons. After a predetermined
+ number of trials, squishyball prints the trial results to
+ stdout and exits. Results (stdout) may be redirected to a file
+ without affecting interactive use of the terminal.
+
+ squishyball can also be used to perform casual, non-randomized
+ comparisons of groups of up to ten samples; this is the default
+ mode of operation.
+ '';
+ homepage = "https://svn.xiph.org/trunk/squishyball";
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ michalrus ];
+ platforms = platforms.linux;
+ };
+}