squishyball: init at 19580 (#18354)
This commit is contained in:
parent
9b26cb92e3
commit
6846b22bb4
@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ openssl libogg libopus ];
|
buildInputs = [ openssl libogg ];
|
||||||
|
propagatedBuildInputs = [ libopus ];
|
||||||
|
patches = [ ./include-multistream.patch ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High-level API for decoding and seeking in .opus files";
|
description = "High-level API for decoding and seeking in .opus files";
|
||||||
|
12
pkgs/applications/audio/opusfile/include-multistream.patch
Normal file
12
pkgs/applications/audio/opusfile/include-multistream.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -Naur a/include/opusfile.h b/include/opusfile.h
|
||||||
|
--- a/include/opusfile.h 2014-04-29 19:07:09.000000000 +0200
|
||||||
|
+++ b/include/opusfile.h 2016-09-05 17:50:15.147553798 +0200
|
||||||
|
@@ -107,7 +107,7 @@
|
||||||
|
# include <stdarg.h>
|
||||||
|
# include <stdio.h>
|
||||||
|
# include <ogg/ogg.h>
|
||||||
|
-# include <opus_multistream.h>
|
||||||
|
+# include <opus/opus_multistream.h>
|
||||||
|
|
||||||
|
/**@cond PRIVATE*/
|
||||||
|
|
48
pkgs/applications/audio/squishyball/default.nix
Normal file
48
pkgs/applications/audio/squishyball/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{ 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 ];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
20
pkgs/applications/audio/squishyball/gnu-screen.patch
Normal file
20
pkgs/applications/audio/squishyball/gnu-screen.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
diff -Naur a/main.c b/main.c
|
||||||
|
--- a/main.c 2016-09-06 13:37:32.259895631 +0200
|
||||||
|
+++ b/main.c 2016-09-07 01:41:51.014309863 +0200
|
||||||
|
@@ -693,6 +693,11 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
/* set up terminal */
|
||||||
|
+ if (!strncmp(getenv("TERM"), "screen", 6)) {
|
||||||
|
+ char term[256];
|
||||||
|
+ snprintf(term, sizeof(term), "xterm%s", getenv("TERM") + 6);
|
||||||
|
+ setenv("TERM", term, 1);
|
||||||
|
+ }
|
||||||
|
atexit(min_panel_remove);
|
||||||
|
panel_init(pcm, test_files, test_mode, start, end>0 ? end : len, len,
|
||||||
|
beep_mode, restart_mode, tests, running_score);
|
||||||
|
@@ -1170,4 +1175,3 @@
|
||||||
|
fprintf(stderr,"Done.\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
-
|
@ -14780,6 +14780,8 @@ in
|
|||||||
|
|
||||||
spideroak = callPackage ../applications/networking/spideroak { };
|
spideroak = callPackage ../applications/networking/spideroak { };
|
||||||
|
|
||||||
|
squishyball = callPackage ../applications/audio/squishyball { };
|
||||||
|
|
||||||
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
|
ssvnc = callPackage ../applications/networking/remote/ssvnc { };
|
||||||
|
|
||||||
viber = callPackage ../applications/networking/instant-messengers/viber { };
|
viber = callPackage ../applications/networking/instant-messengers/viber { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user