From 1a64deeb894dc95e2645a75771732c6cc53a79ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 4 Oct 2023 01:35:06 +0200 Subject: Squash changes containing private information There were a lot of changes since the previous commit, but a lot of them contained personnal information about users. All thos changes got stashed into a single commit (history is kept in a different place) and private information was moved in a separate private repository --- flakes/mypackages/overlays/goaccess/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 flakes/mypackages/overlays/goaccess/default.nix (limited to 'flakes/mypackages/overlays/goaccess') diff --git a/flakes/mypackages/overlays/goaccess/default.nix b/flakes/mypackages/overlays/goaccess/default.nix new file mode 100644 index 0000000..6b9758b --- /dev/null +++ b/flakes/mypackages/overlays/goaccess/default.nix @@ -0,0 +1,13 @@ +self: super: { + goaccess = super.goaccess.overrideAttrs(old: rec { + name = "goaccess-${version}"; + version = "1.4"; + src = self.fetchurl { + url = "https://tar.goaccess.io/${name}.tar.gz"; + sha256 = "1gkpjg39f3afdwm9128jqjsfap07p8s027czzlnxfmi5hpzvkyz8"; + }; + configureFlags = old.configureFlags ++ [ "--enable-tcb=btree" ]; + buildInputs = old.buildInputs ++ [ self.tokyocabinet self.bzip2 ]; + }); + +} -- cgit v1.2.3