about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-06-19T00·55+0100
committerVincent Ambo <mail@tazj.in>2020-06-19T00·56+0100
commit0973f7bb5577373cc4b1afed8eeed44432f852c3 (patch)
treefcc18e7bf1ee40aea24d9ee0e76ac27b99906807 /third_party
parent298291d9ae32012b92ebc2b6ef0707acfe9bc1fa (diff)
chore(3p/honk): Remove honk derivation r/1029
HONK!

Change-Id: Ib2b783078c7e7998c9824fd3277694a84589cd01
Diffstat (limited to 'third_party')
-rw-r--r--third_party/honk/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/third_party/honk/default.nix b/third_party/honk/default.nix
deleted file mode 100644
index fb3e80c452..0000000000
--- a/third_party/honk/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ pkgs, ... }:
-
-pkgs.stdenv.mkDerivation rec {
-  name = "honk-${version}";
-  version = "0.9.0";
-  nativeBuildInputs = [ pkgs.go ];
-  buildInputs = [ pkgs.sqlite ];
-
-  src = builtins.fetchTarball {
-    url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz";
-    sha256 = "0fj1ybhsra626q5vy1sy9aigxx5rjda5mgq74m7kzw7an4z2a67m";
-  };
-
-  # Go tooling needs $HOME to exist because, well, who knows.
-  preBuild = ''
-    mkdir home && export HOME=$PWD/home
-  '';
-
-  installPhase = ''
-    install -D honk $out/bin/honk
-    install -D docs/honk.1 $out/share/man/man1/honk.1
-    install -D docs/honk.3 $out/share/man/man3/honk.3
-    install -D docs/honk.5 $out/share/man/man5/honk.5
-    install -D docs/honk.8 $out/share/man/man8/honk.8
-  '';
-}