about summary refs log tree commit diff
path: root/pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix')
-rw-r--r--pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix b/pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix
deleted file mode 100644
index 9389a4cbb640..000000000000
--- a/pkgs/development/compilers/elm/packages/ghc9_2/elm-format/elm-format.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ mkDerivation, aeson, ansi-wl-pprint, avh4-lib, base, bytestring
-, elm-format-lib, elm-format-test-lib, fetchgit, hspec, lib
-, optparse-applicative, QuickCheck, quickcheck-io, relude, tasty
-, tasty-hspec, tasty-hunit, tasty-quickcheck, text
-}:
-mkDerivation {
-  pname = "elm-format";
-  version = "0.8.7";
-  src = fetchgit {
-    url = "https://github.com/avh4/elm-format";
-    sha256 = "04l1bn4w8q3ifd6mc4mfrqxfbihmqnpfjdn6gr0x2jqcasjbk0bi";
-    rev = "b5cca4c26b473dab06e5d73b98148637e4770d45";
-    fetchSubmodules = true;
-  };
-  isLibrary = false;
-  isExecutable = true;
-  executableHaskellDepends = [
-    aeson ansi-wl-pprint avh4-lib base bytestring elm-format-lib
-    optparse-applicative relude text
-  ];
-  testHaskellDepends = [
-    aeson ansi-wl-pprint avh4-lib base bytestring elm-format-lib
-    elm-format-test-lib hspec optparse-applicative QuickCheck
-    quickcheck-io relude tasty tasty-hspec tasty-hunit tasty-quickcheck
-    text
-  ];
-  homepage = "https://elm-lang.org";
-  description = "Source code formatter for Elm";
-  license = lib.licenses.bsd3;
-  mainProgram = "elm-format";
-}