2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchurl, autoconf, automake, libtool, pkg-config, qttools
|
2019-11-01 08:07:08 +00:00
|
|
|
, liblscp, libgig, qtbase, mkDerivation }:
|
2012-04-20 23:44:50 +01:00
|
|
|
|
2019-11-01 08:07:08 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qsampler";
|
2019-12-24 13:11:48 +00:00
|
|
|
version = "0.6.1";
|
2012-04-20 23:44:50 +01:00
|
|
|
|
2017-12-08 00:25:29 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/qsampler/${pname}-${version}.tar.gz";
|
2019-12-24 13:11:48 +00:00
|
|
|
sha256 = "1wr7k739zx2nz00b810f60g9k3y92w05nfci987hw7y2sks9rd8j";
|
2012-04-20 23:44:50 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config qttools ];
|
2017-12-08 00:25:29 +00:00
|
|
|
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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|