about summary refs log tree commit diff
path: root/pkgs/development/compilers/elm/packages/elm-json/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/elm/packages/elm-json/default.nix')
-rw-r--r--pkgs/development/compilers/elm/packages/elm-json/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/development/compilers/elm/packages/elm-json/default.nix b/pkgs/development/compilers/elm/packages/elm-json/default.nix
deleted file mode 100644
index 16cd7f972ce4..000000000000
--- a/pkgs/development/compilers/elm/packages/elm-json/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, curl
-, rustPlatform
-, fetchurl
-, openssl
-, stdenv
-, pkg-config
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "elm-json";
-  version = "0.2.12";
-
-  src = fetchurl {
-    url = "https://github.com/zwilias/elm-json/archive/v${version}.tar.gz";
-    sha256 = "sha256:nlpxlPzWk3wwDgczuMI9T6DFY1YtQpQ1R4BhdPbzZBs=";
-  };
-
-  cargoPatches = [ ./use-system-ssl.patch ];
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [
-    curl
-    openssl
-  ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
-
-  cargoSha256 = "sha256:8SOpL8nfhYen9vza0LYpB/5fgVmBwG7vGMmFOaJskIc=";
-
-  # Tests perform networking and therefore can't work in sandbox
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Install, upgrade and uninstall Elm dependencies";
-    mainProgram = "elm-json";
-    homepage = "https://github.com/zwilias/elm-json";
-    license = licenses.mit;
-    maintainers = [ maintainers.turbomack ];
-  };
-}