Add rncbc's Vee One suite: sampler, synth and drum kit
This commit is contained in:
parent
c00225bcae
commit
6254091950
21
pkgs/applications/audio/drumkv1/default.nix
Normal file
21
pkgs/applications/audio/drumkv1/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, jackaudio, libsndfile, lv2, qt4 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "drumkv1-${version}";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/drumkv1/${name}.tar.gz";
|
||||||
|
sha256 = "0bafg06iavri9dmg7hpz554kpqf1iv9crcdq46y4n4wyyxd7kajl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jackaudio libsndfile lv2 qt4 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "";
|
||||||
|
homepage = http://drumkv1.sourceforge.net/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
21
pkgs/applications/audio/samplv1/default.nix
Normal file
21
pkgs/applications/audio/samplv1/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, jackaudio, libsndfile, lv2, qt4 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "samplv1-${version}";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
||||||
|
sha256 = "1j6q3ywbdsyhskc60p7k8ph058ylrrmjmri3q1wr2d2akcaqvb7m";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ jackaudio libsndfile lv2 qt4 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
||||||
|
homepage = http://samplv1.sourceforge.net/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
21
pkgs/applications/audio/synthv1/default.nix
Normal file
21
pkgs/applications/audio/synthv1/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, qt4, jackaudio, lv2 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "synthv1-${version}";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/synthv1/${name}.tar.gz";
|
||||||
|
sha256 = "1230yf49qfw540yvp5n7sh6mf3k8590pzwc5mragd3nd6k6apgw9";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ qt4 jackaudio lv2 ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
|
||||||
|
homepage = http://synthv1.sourceforge.net/;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
@ -8250,6 +8250,8 @@ let
|
|||||||
|
|
||||||
crrcsim = callPackage ../games/crrcsim {};
|
crrcsim = callPackage ../games/crrcsim {};
|
||||||
|
|
||||||
|
drumkv1 = callPackage ../applications/audio/drumkv1 { };
|
||||||
|
|
||||||
dwarf_fortress = callPackage_i686 ../games/dwarf-fortress { };
|
dwarf_fortress = callPackage_i686 ../games/dwarf-fortress { };
|
||||||
|
|
||||||
eduke32 = callPackage ../games/eduke32 {
|
eduke32 = callPackage ../games/eduke32 {
|
||||||
@ -8358,6 +8360,8 @@ let
|
|||||||
|
|
||||||
rogue = callPackage ../games/rogue { };
|
rogue = callPackage ../games/rogue { };
|
||||||
|
|
||||||
|
samplv1 = callPackage ../applications/audio/samplv1 { };
|
||||||
|
|
||||||
sauerbraten = callPackage ../games/sauerbraten {};
|
sauerbraten = callPackage ../games/sauerbraten {};
|
||||||
|
|
||||||
scid = callPackage ../games/scid { };
|
scid = callPackage ../games/scid { };
|
||||||
@ -8390,6 +8394,8 @@ let
|
|||||||
|
|
||||||
superTuxKart = callPackage ../games/super-tux-kart { };
|
superTuxKart = callPackage ../games/super-tux-kart { };
|
||||||
|
|
||||||
|
synthv1 = callPackage ../applications/audio/synthv1 { };
|
||||||
|
|
||||||
tbe = callPackage ../games/the-butterfly-effect {};
|
tbe = callPackage ../games/the-butterfly-effect {};
|
||||||
|
|
||||||
teetertorture = callPackage ../games/teetertorture { };
|
teetertorture = callPackage ../games/teetertorture { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user