daf79c692d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qsampler/versions (cherry picked from commit b9346620fddad6d05ceedfbe9f1bd7e89d315a20)
28 lines
762 B
Nix
28 lines
762 B
Nix
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, qttools
|
|
, liblscp, libgig, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qsampler-${version}";
|
|
version = "0.5.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qsampler/${name}.tar.gz";
|
|
sha256 = "1hk0j63zzdyji5dd89spbyw79i74n28zjryyy0a4gsaq0m7j2dry";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkgconfig qttools ];
|
|
buildInputs = [ liblscp libgig qtbase ];
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.linuxsampler.org;
|
|
description = "Graphical frontend to LinuxSampler";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|