diff options
author | Alan Pearce | 2024-05-18 22:00:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 22:00:03 +0200 |
commit | eba794faa27d5d0de9affed861575587da85e6f5 (patch) | |
tree | acd6ff8ae28155cff6002f1b41e1a6e2ecab75cf /overlays/htmlformat | |
parent | 237cc5fc8868e2fa477c91432be4497ece1413e2 (diff) | |
download | nixfiles-eba794faa27d5d0de9affed861575587da85e6f5.tar.lz nixfiles-eba794faa27d5d0de9affed861575587da85e6f5.tar.zst nixfiles-eba794faa27d5d0de9affed861575587da85e6f5.zip |
extract new packages/overrides to nix-packages submodule
Diffstat (limited to 'overlays/htmlformat')
-rw-r--r-- | overlays/htmlformat/default.nix | 3 | ||||
-rw-r--r-- | overlays/htmlformat/htmlformat.nix | 28 |
2 files changed, 0 insertions, 31 deletions
diff --git a/overlays/htmlformat/default.nix b/overlays/htmlformat/default.nix deleted file mode 100644 index 93292c76..00000000 --- a/overlays/htmlformat/default.nix +++ /dev/null @@ -1,3 +0,0 @@ -self: super: { - htmlformat = super.callPackage ./htmlformat.nix { }; -} diff --git a/overlays/htmlformat/htmlformat.nix b/overlays/htmlformat/htmlformat.nix deleted file mode 100644 index aa124ee5..00000000 --- a/overlays/htmlformat/htmlformat.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ 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"; - }; -} |