summary refs log tree commit diff
path: root/pkgs/development/pure-modules/liblo
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/liblo
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/liblo')
-rw-r--r--pkgs/development/pure-modules/liblo/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/pure-modules/liblo/default.nix b/pkgs/development/pure-modules/liblo/default.nix
deleted file mode 100644
index d19c7b511cf..00000000000
--- a/pkgs/development/pure-modules/liblo/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, pure, liblo }:
-
-stdenv.mkDerivation rec {
-  pname = "pure-liblo";
-  version = "0.9";
-
-  src = fetchurl {
-    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-liblo-${version}.tar.gz";
-    sha256 = "c2ba4d6f94489acf8a8fac73982ae03d5ad4113146eb1f7d6558a956c57cb8ee";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-  propagatedBuildInputs = [ pure liblo ];
-  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
-  setupHook = ../generic-setup-hook.sh;
-
-  meta = {
-    description = "A quick and dirty Pure wrapper for the liblo library, which implements Berkeley’s Open Sound Control (OSC) protocol";
-    homepage = "http://puredocs.bitbucket.org/pure-liblo.html";
-    license = lib.licenses.lgpl3Plus;
-    platforms = lib.platforms.linux;
-    maintainers = with lib.maintainers; [ asppsa ];
-  };
-}