a840fbe80c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/drumkv1/versions
24 lines
705 B
Nix
24 lines
705 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, libsndfile, liblo, lv2, qt5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "drumkv1-${version}";
|
|
version = "0.9.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
|
|
sha256 = "1361dqdasrc98q9hcjdwsjx6agfimwnay430887fryi3pslkyd81";
|
|
};
|
|
|
|
buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
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 ];
|
|
};
|
|
}
|