From 75a4e09f1d241f7882a86d7f9c4aa1804a981209 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 28 Apr 2024 23:21:11 +0200 Subject: move overlays to root folder --- overlays/htmlformat/default.nix | 3 +++ overlays/htmlformat/htmlformat.nix | 28 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 overlays/htmlformat/default.nix create mode 100644 overlays/htmlformat/htmlformat.nix (limited to 'overlays/htmlformat') diff --git a/overlays/htmlformat/default.nix b/overlays/htmlformat/default.nix new file mode 100644 index 00000000..93292c76 --- /dev/null +++ b/overlays/htmlformat/default.nix @@ -0,0 +1,3 @@ +self: super: { + htmlformat = super.callPackage ./htmlformat.nix { }; +} diff --git a/overlays/htmlformat/htmlformat.nix b/overlays/htmlformat/htmlformat.nix new file mode 100644 index 00000000..aa124ee5 --- /dev/null +++ b/overlays/htmlformat/htmlformat.nix @@ -0,0 +1,28 @@ +{ lib +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "htmlformat"; + version = "unstable-2023-11-08"; + + src = fetchFromGitHub { + owner = "a-h"; + repo = "htmlformat"; + rev = "5bd994fe268e4d505a9793143fa85414c7d50887"; + hash = "sha256-YSl9GsXhc0L2oKGZLwwjUtpe5W6ra6kk74zvQdsDCMU="; + }; + + vendorHash = "sha256-uVfh1pPhfj6AyQDqFd1EDWshuyDRvbMDZj3SN5tCS2w="; + + ldflags = [ "-s" "-w" ]; + + meta = with lib; { + description = "Htmlformat"; + homepage = "https://github.com/a-h/htmlformat"; + license = licenses.mit; + maintainers = with maintainers; [ alanpearce ]; + mainProgram = "htmlformat"; + }; +} -- cgit 1.4.1