mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
nootka: init at 1.4.7, init unstable at 1.7.0-beta1
This commit is contained in:
parent
eb35d21d77
commit
3e47a6e50a
31
pkgs/applications/audio/nootka/default.nix
Normal file
31
pkgs/applications/audio/nootka/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchurl, cmake
|
||||
, alsaLib, fftwSinglePrec, libjack2, libpulseaudio, libvorbis, soundtouch, qtbase
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nootka-1.4.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/nootka/${name}-source.tar.bz2";
|
||||
sha256 = "1y9wlwri74v2z9dwbcfjs7xri54yra24vpwq19xi2lfv1nbs518x";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [
|
||||
alsaLib fftwSinglePrec libjack2 libpulseaudio libvorbis soundtouch qtbase
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
33
pkgs/applications/audio/nootka/unstable.nix
Normal file
33
pkgs/applications/audio/nootka/unstable.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -20976,6 +20976,9 @@ in
|
|||
|
||||
notion = callPackage ../applications/window-managers/notion { };
|
||||
|
||||
nootka = qt5.callPackage ../applications/audio/nootka { };
|
||||
nootka-unstable = qt5.callPackage ../applications/audio/nootka/unstable.nix { };
|
||||
|
||||
open-policy-agent = callPackage ../development/tools/open-policy-agent { };
|
||||
|
||||
openshift = callPackage ../applications/networking/cluster/openshift {
|
||||
|
|
Loading…
Reference in a new issue