2017-12-08 00:25:29 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, qttools
|
|
|
|
, liblscp, libgig, qtbase }:
|
2012-04-20 23:44:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-08 00:25:29 +00:00
|
|
|
name = "qsampler-${version}";
|
2017-12-14 13:30:51 +00:00
|
|
|
version = "0.5.0";
|
2012-04-20 23:44:50 +01:00
|
|
|
|
2017-12-08 00:25:29 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qsampler/${name}.tar.gz";
|
2017-12-14 13:30:51 +00:00
|
|
|
sha256 = "0kn1mv31ygjjsric03pkbv7r8kg3bri9ldx2ajc9pyx0p8ggnbmc";
|
2012-04-20 23:44:50 +01:00
|
|
|
};
|
|
|
|
|
2017-12-08 00:25:29 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig qttools ];
|
|
|
|
buildInputs = [ liblscp libgig qtbase ];
|
2012-04-20 23:44:50 +01:00
|
|
|
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
|
2017-12-09 01:34:24 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-04-20 23:44:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.linuxsampler.org;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Graphical frontend to LinuxSampler";
|
2012-04-20 23:44:50 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 23:44:50 +01:00
|
|
|
};
|
|
|
|
}
|