aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/nootka/unstable.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/nootka/unstable.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/nootka/unstable.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/nootka/unstable.nix b/nixpkgs/pkgs/applications/audio/nootka/unstable.nix
new file mode 100644
index 00000000000..16df55c1dfb
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/nootka/unstable.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, cmake
+, alsaLib, fftwSinglePrec, libjack2, libpulseaudio, libvorbis, soundtouch
+, qtbase, qtdeclarative, qtquickcontrols2
+}:
+
+stdenv.mkDerivation rec {
+ name = "nootka-1.7.0-beta1";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/nootka/${name}-source.tar.bz2";
+ sha256 = "13b50vnpr1zx2mrgkc8fmhsyfa19rqq1rksvn31145dy6fk1f3gc";
+ };
+
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [
+ alsaLib fftwSinglePrec libjack2 libpulseaudio libvorbis soundtouch
+ qtbase qtdeclarative qtquickcontrols2
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_INCLUDE_PATH=${libjack2}/include/jack;${libpulseaudio.dev}/include/pulse"
+ "-DENABLE_JACK=ON"
+ "-DENABLE_PULSEAUDIO=ON"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Application for practicing playing musical scores and ear training";
+ homepage = "https://nootka.sourceforge.io/";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ orivej ];
+ platforms = platforms.linux;
+ };
+}