about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-11-23 21:02:16 +0100
committerAlan Pearce2024-11-23 21:02:16 +0100
commit8676655b28c94931c1ad2e443740341b348b056c (patch)
treebec19cb796c4db5d1c1cf1f5ecdb4055960de10f
parent79578339569fd224a66801d1f35176be994e70c3 (diff)
downloadnix-packages-8676655b28c94931c1ad2e443740341b348b056c.tar.lz
nix-packages-8676655b28c94931c1ad2e443740341b348b056c.tar.zst
nix-packages-8676655b28c94931c1ad2e443740341b348b056c.zip
remove prettier-plugin-go-template HEAD main
has been added to nixpkgs
-rw-r--r--default.nix1
-rw-r--r--pkgs/prettier-plugin-go-template/default.nix23
2 files changed, 0 insertions, 24 deletions
diff --git a/default.nix b/default.nix
index 7c5563b..3d89820 100644
--- a/default.nix
+++ b/default.nix
@@ -14,7 +14,6 @@
   modules = import ./modules/nixos; # NixOS modules
   overlays = import ./overlays; # nixpkgs overlays
 
-  prettier-plugin-go-template = pkgs.callPackage ./pkgs/prettier-plugin-go-template { };
   htmlformat = pkgs.callPackage ./pkgs/htmlformat { };
   emacs-unlimited-select = pkgs.callPackage ./pkgs/emacs-unlimited-select { };
   porto = pkgs.callPackage ./pkgs/porto { };
diff --git a/pkgs/prettier-plugin-go-template/default.nix b/pkgs/prettier-plugin-go-template/default.nix
deleted file mode 100644
index fdaea29..0000000
--- a/pkgs/prettier-plugin-go-template/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, buildNpmPackage, fetchFromGitHub }:
-
-buildNpmPackage rec {
-  pname = "prettier-plugin-go-template";
-  version = "0.0.15";
-
-  src = fetchFromGitHub {
-    owner = "NiklasPor";
-    repo = "prettier-plugin-go-template";
-    rev = "b7fe3eeeeeef69587cca96b85473882a7f52c1c7";
-    hash = "sha256-K+BuKzOV0dP67TJLIn6BpAorDesNVp0710AS8XE+RV4=";
-  };
-
-  npmDepsHash = "sha256-PpJnVZFRxpUHux2jIBDtyBS4qNo6IJY4kwTAq6stEVQ=";
-
-  npmPackFlags = [ "--ignore-scripts" ];
-
-  meta = with lib; {
-    description = "Fixes prettier formatting for go templates 🐹";
-    homepage = "https://github.com/NiklasPor/prettier-plugin-go-template";
-    license = licenses.mit;
-  };
-}