Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
889 B
Nix
43 lines
889 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
curl,
|
|
openssl,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "elm-json";
|
|
version = "0.2.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zwilias";
|
|
repo = "elm-json";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-pSt4ugP8r7s0ABT3Y9ZbWAG/ShsARtame2lTxXiCuws=";
|
|
};
|
|
|
|
cargoPatches = [ ./use-system-ssl.patch ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
curl
|
|
openssl
|
|
];
|
|
|
|
cargoHash = "sha256-BnL//AHaSnsugtMEnSTynpMyeNt5N7L6PG2wdWDw1y4=";
|
|
|
|
# Tests perform networking and therefore can't work in sandbox
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Install, upgrade and uninstall Elm dependencies";
|
|
mainProgram = "elm-json";
|
|
homepage = "https://github.com/zwilias/elm-json";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.turbomack ];
|
|
};
|
|
})
|