62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchurl, alsaLib, boost, glib, jack2, ladspaPlugins
|
|
, libarchive, liblrdf , libsndfile, pkgconfig, qt4, scons, subversion }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.5.1";
|
|
name = "hydrogen-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/hydrogen/hydrogen-${version}.tar.gz";
|
|
sha256 = "1fvyp6gfzcqcc90dmaqbm11p272zczz5pfz1z4lj33nfr7z0bqgb";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsaLib boost glib jack2 ladspaPlugins libarchive liblrdf
|
|
libsndfile pkgconfig qt4 scons subversion
|
|
];
|
|
|
|
patches = [ ./scons-env.patch ];
|
|
|
|
postPatch = ''
|
|
sed -e 's#/usr/lib/ladspa#${ladspaPlugins}/lib/ladspa#' -i libs/hydrogen/src/preferences.cpp
|
|
sed '/\/usr/d' -i libs/hydrogen/src/preferences.cpp
|
|
sed "s#pkg_ver.rstrip().split('.')#pkg_ver.rstrip().split('.')[:3]#" -i Sconstruct
|
|
'';
|
|
|
|
# why doesn't scons find librdf?
|
|
buildPhase = ''
|
|
scons prefix=$out libarchive=1 lrdf=0 install
|
|
'';
|
|
|
|
installPhase = ":";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Advanced drum machine";
|
|
homepage = http://www.hydrogen-music.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|