about summary refs log tree commit diff
path: root/pkgs/development/tools/refmt/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/refmt/default.nix')
-rw-r--r--pkgs/development/tools/refmt/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/tools/refmt/default.nix b/pkgs/development/tools/refmt/default.nix
deleted file mode 100644
index 5946e75f3f20..000000000000
--- a/pkgs/development/tools/refmt/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, fetchFromGitHub, buildGoModule }:
-
-buildGoModule rec {
-  pname = "refmt";
-  version = "1.6.1";
-
-  src = fetchFromGitHub {
-    owner = "rjeczalik";
-    repo = "refmt";
-    rev = "v${version}";
-    sha256 = "sha256-HiAWSR2S+3OcIgwdQ0ltW37lcG+OHkDRDUF07rfNcJY=";
-  };
-
-  vendorHash = "sha256-MiYUDEF9W0VAiOX6uE8doXtGAekIrA1cfA8A2a7xd2I=";
-
-  meta = with lib; {
-    description = "Reformat HCL <-> JSON <-> YAML";
-    mainProgram = "refmt";
-    homepage = "https://github.com/rjeczalik/refmt";
-    license = licenses.agpl3Only;
-    maintainers = with lib.maintainers; [ deemp ];
-  };
-}