aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix b/nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix
deleted file mode 100644
index 2f220f8d31a..00000000000
--- a/nixpkgs/pkgs/applications/audio/hydrogen/unstable.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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 ];
- };
-}