about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2024-02-19T20·16-0500
committerclbot <clbot@tvl.fyi>2024-02-19T20·58+0000
commitd1055ee841fac4e4d0647af6ea6536f89ff6a3d9 (patch)
treecfe4ad4aa2edf5dd5d555eae781b05694b691a31 /third_party
parent79488e4ee110048d99bc4f4affe27f499ff4d5d9 (diff)
chore(aspen/system): Drop alsi r/7562
Change-Id: Ia1f6c4569df9f5467b1bbb5e6bd5e9ec4a5c8720
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10978
Autosubmit: aspen <root@gws.fyi>
Reviewed-by: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to 'third_party')
-rw-r--r--third_party/alsi/OWNERS1
-rw-r--r--third_party/alsi/default.nix25
2 files changed, 0 insertions, 26 deletions
diff --git a/third_party/alsi/OWNERS b/third_party/alsi/OWNERS
deleted file mode 100644
index b381c4e660..0000000000
--- a/third_party/alsi/OWNERS
+++ /dev/null
@@ -1 +0,0 @@
-aspen
diff --git a/third_party/alsi/default.nix b/third_party/alsi/default.nix
deleted file mode 100644
index 8969374176..0000000000
--- a/third_party/alsi/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, ... }:
-
-with pkgs;
-
-stdenv.mkDerivation {
-  name = "alsi";
-  pname = "alsi";
-  version = "0.4.8";
-
-  src = fetchFromGitHub {
-    owner = "trizen";
-    repo = "alsi";
-    rev = "fe2a925caad38d4cc7afe10d74ba60c5db09ee66";
-    sha256 = "060xlalfclrda5f1h3svj4v2gr19mdrsc62vrg7hgii0f3lib7j5";
-  };
-
-  buildInputs = [
-    (perl.withPackages (ps: with ps; [ DataDump ]))
-  ];
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp alsi $out/bin/alsi
-  '';
-}