summary refs log tree commit diff
path: root/pkgs/development/pure-modules/faust
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-31 22:04:44 +0200
committerajs124 <git@ajs124.de>2022-04-03 16:15:00 +0100
commitca81c7821844739c7a29badd010317066f608f5e (patch)
treeff107fcaaba0ff86d338ea132eb1d666fe7b3417 /pkgs/development/pure-modules/faust
parentf75ec63a9bb37372c7bb5350be178ef24b63a00b (diff)
downloadnixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar.gz
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar.bz2
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar.lz
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar.xz
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.tar.zst
nixpkgs-ca81c7821844739c7a29badd010317066f608f5e.zip
pure: remove after being marked broken for over two years
It was marked in commit ae2a5a91ddf1923e6717ace65b5b8b92b4fd7ec4 by Luka Blaskovic on 2020-01-18 (commited on 2020-01-31)
Diffstat (limited to 'pkgs/development/pure-modules/faust')
-rw-r--r--pkgs/development/pure-modules/faust/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/pure-modules/faust/default.nix b/pkgs/development/pure-modules/faust/default.nix
deleted file mode 100644
index eef81e59cbf..00000000000
--- a/pkgs/development/pure-modules/faust/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, pure, faust, libtool }:
-
-stdenv.mkDerivation rec {
-  pname = "pure-faust";
-  version = "0.11";
-
-  src = fetchurl {
-    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-faust-${version}.tar.gz";
-    sha256 = "51278a3b0807c4770163dc2ce423507dcf0ffec9cd1c1fbc08426d07294f6ae0";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  propagatedBuildInputs = [ pure faust libtool ];
-  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
-  setupHook = ../generic-setup-hook.sh;
-
-  meta = {
-    description = "Lets you load and run Faust-generated signal processing modules in Pure";
-    homepage = "http://puredocs.bitbucket.org/pure-faust.html";
-    license = lib.licenses.lgpl3Plus;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ asppsa ];
-  };
-}