mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
add foo-yc20: a Faust implementation of a combo organ
This commit is contained in:
parent
d7de6dad5f
commit
73bb94e620
27
pkgs/applications/audio/foo-yc20/default.nix
Normal file
27
pkgs/applications/audio/foo-yc20/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, jack2, gtk2, lv2, faust, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "git-2015-05-21";
|
||||
name = "foo-yc20-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "sampov2";
|
||||
repo = "foo-yc20";
|
||||
rev = "edd9d14c91229429b14270a181743e1046160ca8";
|
||||
sha256 = "0i8261n95n4xic766h70xkrpbvw3sag96n1883ahmg6h7yb94avq";
|
||||
};
|
||||
|
||||
buildInputs = [ jack2 gtk2 lv2 faust pkgconfig ];
|
||||
|
||||
makeFlags = "PREFIX=$(out)";
|
||||
|
||||
# remove lv2 until https://github.com/sampov2/foo-yc20/issues/6 is resolved
|
||||
postInstallFixup = "rm -rf $out/lib/lv2";
|
||||
|
||||
meta = {
|
||||
description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20";
|
||||
homepage = https://github.com/sampov2/foo-yc20;
|
||||
license = "BSD";
|
||||
maintainers = stdenv.lib.maintainers.magnetophon;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -10932,6 +10932,8 @@ let
|
||||
|
||||
focuswriter = callPackage ../applications/editors/focuswriter { };
|
||||
|
||||
foo-yc20 = callPackage ../applications/audio/foo-yc20 { };
|
||||
|
||||
fossil = callPackage ../applications/version-management/fossil { };
|
||||
|
||||
freewheeling = callPackage ../applications/audio/freewheeling { };
|
||||
|
Loading…
Reference in New Issue
Block a user