Skip to content

Commit

Permalink
drumstick: 1.0.2 -> 1.1.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 45cfd39)
  • Loading branch information
ndowens authored and dezgeg committed Mar 12, 2017
1 parent b45aee4 commit 463eb16
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pkgs/development/libraries/drumstick/default.nix
Expand Up @@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
name = "drumstick-${version}";
version = "1.0.2";
version = "1.1.0";

src = fetchurl {
url = "mirror://sourceforge/drumstick/${version}/${name}.tar.bz2";
sha256 = "0l47gy9yywrc860db5g3wdqg8yc8qdb2lqq6wvw1dfim5j0vbail";
sha256 = "13pkfqrav30bbcddgf1imd7jk6lpqbxkz1qv31718pdl446jq7df";
};

outputs = [ "out" "dev" "man" ];
Expand All @@ -28,15 +28,21 @@ stdenv.mkDerivation rec {
done
'';

#Temporarily remove drumstick-piano; Gives segment fault. Submitted ticket
postInstall = ''
rm $out/bin/drumstick-vpiano
'';

nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
alsaLib cmake doxygen fluidsynth pkgconfig qt5.qtbase qt5.qtsvg
alsaLib doxygen fluidsynth qt5.qtbase qt5.qtsvg
];

meta = with stdenv.lib; {
maintainers = with maintainers; [ solson ];
description = "MIDI libraries for Qt5/C++";
homepage = http://drumstick.sourceforge.net/;
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" ];
platforms = platforms.linux;
};
}

0 comments on commit 463eb16

Please sign in to comment.