1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/audio/drumkv1/default.nix

24 lines
708 B
Nix
Raw Normal View History

2017-02-28 15:28:39 +00:00
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
stdenv.mkDerivation rec {
pname = "drumkv1";
2019-11-02 00:06:48 +00:00
version = "0.9.11";
src = fetchurl {
url = "mirror://sourceforge/drumkv1/${pname}-${version}.tar.gz";
2019-11-02 00:06:48 +00:00
sha256 = "1wnjn175l0mz51k9pjf3pdzv54c4jlh63saavld9lm6zfgfs13d7";
};
2016-11-01 01:48:20 +00:00
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
2017-02-28 15:28:39 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
2013-03-06 21:26:08 +00:00
description = "An old-school drum-kit sampler synthesizer with stereo fx";
homepage = http://drumkv1.sourceforge.net/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}