2017-12-07 16:25:29 -08:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, qttools
|
|
|
|
, liblscp, libgig, qtbase }:
|
2012-04-20 15:44:50 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "qsampler";
|
2019-10-23 14:05:02 -07:00
|
|
|
version = "0.6.0";
|
2012-04-20 15:44:50 -07:00
|
|
|
|
2017-12-07 16:25:29 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/qsampler/${pname}-${version}.tar.gz";
|
2019-10-23 14:05:02 -07:00
|
|
|
sha256 = "1krhjyd67hvnv6sgndwq81lfvnb4qkhc7da1119fn2lzl7hx9wh3";
|
2012-04-20 15:44:50 -07:00
|
|
|
};
|
|
|
|
|
2017-12-07 16:25:29 -08:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig qttools ];
|
|
|
|
buildInputs = [ liblscp libgig qtbase ];
|
2012-04-20 15:44:50 -07:00
|
|
|
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
|
2017-12-08 17:34:24 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-04-20 15:44:50 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.linuxsampler.org;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Graphical frontend to LinuxSampler";
|
2012-04-20 15:44:50 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 04:08:26 -07:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 15:44:50 -07:00
|
|
|
};
|
|
|
|
}
|