about summary refs log tree commit diff
path: root/pkgs/applications/audio/foo-yc20/default.nix
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-31 22:04:05 +0200
committerajs124 <git@ajs124.de>2022-04-03 16:14:13 +0100
commit121d886113731ddeadc79c362f8b6a8f0e3cd4e5 (patch)
treeaaf5c78785a3a9130be8c8dab8b678de3d606671 /pkgs/applications/audio/foo-yc20/default.nix
parent5cb86e081fee9ee516320f0e4b5c5db38699a26e (diff)
foo-yc20: remove after being marked broken for over two years
It was marked in commit f63c179b0b0eb08cd06adf5deb973370da80314c by Bart Brouns on 2016-11-07 (commited on 2016-11-07)
Diffstat (limited to 'pkgs/applications/audio/foo-yc20/default.nix')
-rw-r--r--pkgs/applications/audio/foo-yc20/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/applications/audio/foo-yc20/default.nix b/pkgs/applications/audio/foo-yc20/default.nix
deleted file mode 100644
index abb13b021c047..0000000000000
--- a/pkgs/applications/audio/foo-yc20/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, libjack2, gtk2, lv2, faust, pkg-config }:
-
-stdenv.mkDerivation {
-  version = "unstable-2015-05-21";
-  pname = "foo-yc20";
-  src = fetchFromGitHub {
-    owner = "sampov2";
-    repo = "foo-yc20";
-    rev = "edd9d14c91229429b14270a181743e1046160ca8";
-    sha256 = "0i8261n95n4xic766h70xkrpbvw3sag96n1883ahmg6h7yb94avq";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ libjack2 gtk2 lv2 faust ];
-
-  makeFlags = [ "PREFIX=$(out)" ];
-
-  # remove lv2 until https://github.com/sampov2/foo-yc20/issues/6 is resolved
-  postInstallFixup = "rm -rf $out/lib/lv2";
-
-  meta = with lib; {
-    broken = true; # see: https://github.com/sampov2/foo-yc20/issues/7
-    description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20";
-    homepage = "https://github.com/sampov2/foo-yc20";
-    license = with licenses; [ bsd3 lgpl21 mpl11 ];
-    maintainers = [ maintainers.magnetophon ];
-    platforms = platforms.linux;
-  };
-}