summary refs log tree commit diff
path: root/pkgs/applications/audio/nootka/unstable.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-03-26 23:07:09 +0000
committerOrivej Desh <orivej@gmx.fr>2020-03-26 23:36:29 +0000
commit3e47a6e50aca1861a4a52215e92e9a946cbfc7b3 (patch)
treed3962eb8fc9a4dbc0355b60842db1cff12324049 /pkgs/applications/audio/nootka/unstable.nix
parenteb35d21d77e40a0a3132602de83f7c182886d281 (diff)
downloadnixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar.gz
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar.bz2
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar.lz
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar.xz
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.tar.zst
nixpkgs-3e47a6e50aca1861a4a52215e92e9a946cbfc7b3.zip
nootka: init at 1.4.7, init unstable at 1.7.0-beta1
Diffstat (limited to 'pkgs/applications/audio/nootka/unstable.nix')
-rw-r--r--pkgs/applications/audio/nootka/unstable.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/audio/nootka/unstable.nix b/pkgs/applications/audio/nootka/unstable.nix
new file mode 100644
index 00000000000..d76fd0835ca
--- /dev/null
+++ b/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;
+  };
+}