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

36 lines
982 B
Nix
Raw Normal View History

2016-06-30 13:54:50 +02:00
{ stdenv, fetchurl, alsaLib, cmake, docbook_xsl, docbook_xml_dtd_45, doxygen
, fluidsynth, pkgconfig, qt5
}:
stdenv.mkDerivation rec {
pname = "drumstick";
version = "1.1.3";
2016-06-30 13:54:50 +02:00
src = fetchurl {
url = "mirror://sourceforge/drumstick/${version}/${pname}-${version}.tar.bz2";
sha256 = "1n9wvg79yvkygrkc8xd8pgrd3d7hqmr7gh24dccf0px23lla9b3m";
2016-06-30 13:54:50 +02:00
};
outputs = [ "out" "dev" "man" ];
enableParallelBuilding = true;
2017-03-12 18:55:30 +01: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 13:54:50 +02:00
buildInputs = [
2017-03-12 18:55:30 +01:00
alsaLib doxygen fluidsynth qt5.qtbase qt5.qtsvg
2016-06-30 13:54:50 +02: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 18:55:30 +01:00
platforms = platforms.linux;
2016-06-30 13:54:50 +02:00
};
}