forked from mirrors/nixpkgs
Adding qsampler, the frontend for LinuxSampler
svn path=/nixpkgs/trunk/; revision=33867
This commit is contained in:
parent
68f07e270a
commit
6264f9cd91
24
pkgs/applications/audio/qsampler/default.nix
Normal file
24
pkgs/applications/audio/qsampler/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchsvn, autoconf, automake, liblscp, libtool, pkgconfig
|
||||
, qt4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qsampler-svn-${version}";
|
||||
version = "2342";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://svn.linuxsampler.org/svn/qsampler/trunk";
|
||||
rev = "${version}";
|
||||
sha256 = "17w3vgpgfmvl11wsd5ndk9zdggl3gbzv3wbd45dyf2al4i0miqnx";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake liblscp libtool pkgconfig qt4 ];
|
||||
|
||||
preConfigure = "make -f Makefile.svn";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.linuxsampler.org;
|
||||
description = "graphical frontend to LinuxSampler";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
23
pkgs/development/libraries/liblscp/default.nix
Normal file
23
pkgs/development/libraries/liblscp/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchsvn, autoconf, automake, libtool, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "liblscp-svn-${version}";
|
||||
version = "2319";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "https://svn.linuxsampler.org/svn/liblscp/trunk";
|
||||
rev = "${version}";
|
||||
sha256 = "0jgdy9gi9n8x2pqrbll9158vhx8293lnxv8vzl0szcincslgk7hi";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake libtool pkgconfig ];
|
||||
|
||||
preConfigure = "make -f Makefile.svn";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.linuxsampler.org;
|
||||
description = "LinuxSampler Control Protocol (LSCP) wrapper library";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
|
@ -4038,6 +4038,8 @@ let
|
|||
|
||||
liblrdf = callPackage ../development/libraries/liblrdf {};
|
||||
|
||||
liblscp = callPackage ../development/libraries/liblscp { };
|
||||
|
||||
libev = builderDefsPackage ../development/libraries/libev {
|
||||
};
|
||||
|
||||
|
@ -7309,6 +7311,8 @@ let
|
|||
|
||||
qemuImage = callPackage ../applications/virtualization/qemu/linux-img { };
|
||||
|
||||
qsampler = callPackage ../applications/audio/qsampler { };
|
||||
|
||||
qsynth = callPackage ../applications/audio/qsynth { };
|
||||
|
||||
qtpfsgui = callPackage ../applications/graphics/qtpfsgui { };
|
||||
|
|
Loading…
Reference in a new issue