nixpkgs/pkgs/applications/audio/qsampler/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
765 B
Nix
Raw Normal View History

{ lib, fetchurl, autoconf, automake, libtool, pkg-config, qttools
2019-11-01 08:07:08 +00:00
, liblscp, libgig, qtbase, mkDerivation }:
2019-11-01 08:07:08 +00:00
mkDerivation rec {
pname = "qsampler";
2019-12-24 13:11:48 +00:00
version = "0.6.1";
2017-12-08 00:25:29 +00:00
src = fetchurl {
url = "mirror://sourceforge/qsampler/${pname}-${version}.tar.gz";
2019-12-24 13:11:48 +00:00
sha256 = "1wr7k739zx2nz00b810f60g9k3y92w05nfci987hw7y2sks9rd8j";
};
nativeBuildInputs = [ autoconf automake libtool pkg-config qttools ];
2017-12-08 00:25:29 +00:00
buildInputs = [ liblscp libgig qtbase ];
preConfigure = "make -f Makefile.svn";
2017-12-09 01:34:24 +00:00
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://www.linuxsampler.org";
description = "Graphical frontend to LinuxSampler";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}