mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
hydrogen-unstable: init at 1.0.0-beta2 (#85454)
This commit is contained in:
parent
d9af81af16
commit
f9fbc9b118
34
pkgs/applications/audio/hydrogen/unstable.nix
Normal file
34
pkgs/applications/audio/hydrogen/unstable.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, wrapQtAppsHook
|
||||||
|
, alsaLib, ladspa-sdk, lash, libarchive, libjack2, liblo, libpulseaudio, libsndfile, lrdf
|
||||||
|
, qtbase, qttools, qtxmlpatterns
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "hydrogen";
|
||||||
|
version = "1.0.0-beta2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "hydrogen-music";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1s3jrdyjpm92flw9mkkxchnj0wz8nn1y1kifii8ws252iiqjya4a";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ];
|
||||||
|
buildInputs = [
|
||||||
|
alsaLib ladspa-sdk lash libarchive libjack2 liblo libpulseaudio libsndfile lrdf
|
||||||
|
qtbase qttools qtxmlpatterns
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DWANT_DEBUG=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Advanced drum machine";
|
||||||
|
homepage = "http://www.hydrogen-music.org";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ goibhniu orivej ];
|
||||||
|
};
|
||||||
|
}
|
@ -19858,6 +19858,7 @@ in
|
|||||||
hugo = callPackage ../applications/misc/hugo { };
|
hugo = callPackage ../applications/misc/hugo { };
|
||||||
|
|
||||||
hydrogen = callPackage ../applications/audio/hydrogen { };
|
hydrogen = callPackage ../applications/audio/hydrogen { };
|
||||||
|
hydrogen-unstable = qt5.callPackage ../applications/audio/hydrogen/unstable.nix { };
|
||||||
|
|
||||||
hydroxide = callPackage ../applications/networking/hydroxide { };
|
hydroxide = callPackage ../applications/networking/hydroxide { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user