nixpkgs/pkgs/development/libraries/drumstick/default.nix

36 lines
980 B
Nix
Raw Normal View History

2016-06-30 11:54:50 +00:00
{ stdenv, fetchurl, alsaLib, cmake, docbook_xsl, docbook_xml_dtd_45, doxygen
, fluidsynth, pkgconfig, qt5
}:
stdenv.mkDerivation rec {
name = "drumstick-${version}";
version = "1.1.2";
2016-06-30 11:54:50 +00:00
src = fetchurl {
url = "mirror://sourceforge/drumstick/${version}/${name}.tar.bz2";
sha256 = "0kljqyqj7s1i2z52i24x7ail1bywn6dcxxfbad5c59drm8wv94bp";
2016-06-30 11:54:50 +00:00
};
outputs = [ "out" "dev" "man" ];
enableParallelBuilding = true;
2017-03-12 17:55:30 +00:00
#Temporarily remove drumstick-piano; Gives segment fault. Submitted ticket
postInstall = ''
rm $out/bin/drumstick-vpiano
'';
nativeBuildInputs = [ cmake pkgconfig docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_45 ];
2016-06-30 11:54:50 +00:00
buildInputs = [
2017-03-12 17:55:30 +00:00
alsaLib doxygen fluidsynth qt5.qtbase qt5.qtsvg
2016-06-30 11:54:50 +00:00
];
meta = with stdenv.lib; {
maintainers = with maintainers; [ solson ];
description = "MIDI libraries for Qt5/C++";
homepage = http://drumstick.sourceforge.net/;
license = licenses.gpl2Plus;
2017-03-12 17:55:30 +00:00
platforms = platforms.linux;
2016-06-30 11:54:50 +00:00
};
}