From 26a52edfdb3a4bdec2f4216208f5a93ea2dbd35c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 19 Apr 2020 23:21:51 +0100 Subject: feat(third_party): Add derivation for honk --- third_party/default.nix | 1 + third_party/honk/default.nix | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 third_party/honk/default.nix diff --git a/third_party/default.nix b/third_party/default.nix index 4a9363c49f..e510373e22 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -92,6 +92,7 @@ let rustPlatform rustc sbcl + sqlite stdenv stern symlinkJoin diff --git a/third_party/honk/default.nix b/third_party/honk/default.nix new file mode 100644 index 0000000000..8248bd6a8e --- /dev/null +++ b/third_party/honk/default.nix @@ -0,0 +1,21 @@ +{ 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"; + }; + + 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 + ''; +} -- cgit 1.4.1