2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchurl, autoconf, automake, libtool, pkg-config, qttools
|
2019-11-01 01:07:08 -07:00
|
|
|
, liblscp, libgig, qtbase, mkDerivation }:
|
2012-04-20 15:44:50 -07:00
|
|
|
|
2019-11-01 01:07:08 -07:00
|
|
|
mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "qsampler";
|
2019-12-24 05:11:48 -08:00
|
|
|
version = "0.6.1";
|
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-12-24 05:11:48 -08:00
|
|
|
sha256 = "1wr7k739zx2nz00b810f60g9k3y92w05nfci987hw7y2sks9rd8j";
|
2012-04-20 15:44:50 -07:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config qttools ];
|
2017-12-07 16:25:29 -08:00
|
|
|
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;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|