Merge pull request #149586 from jpagex/elm-test-rs

elm-test-rs: init at 2.0
This commit is contained in:
Marek Fajkus 2021-12-08 19:16:55 +01:00 committed by GitHub
commit 425d5986bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 1 deletions

View file

@ -13389,4 +13389,10 @@
github = "vdot0x23"; github = "vdot0x23";
githubId = 40716069; githubId = 40716069;
}; };
jpagex = {
name = "Jérémy Pagé";
email = "contact@jeremypage.me";
github = "jpagex";
githubId = 635768;
};
} }

View file

@ -2,7 +2,7 @@
, haskell, haskellPackages, nodejs , haskell, haskellPackages, nodejs
, fetchurl, fetchpatch, makeWrapper, writeScriptBin , fetchurl, fetchpatch, makeWrapper, writeScriptBin
# Rust dependecies # Rust dependecies
, curl, rustPlatform, openssl, pkg-config, Security , curl, rustPlatform, openssl, pkg-config, Security, darwin
}: }:
let let
fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; }; fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; };
@ -111,6 +111,17 @@ let
maintainers = [ maintainers.turbomack ]; maintainers = [ maintainers.turbomack ];
}; };
}; };
elm-test-rs = import ./packages/elm-test-rs.nix {
inherit lib rustPlatform fetchurl openssl stdenv Security darwin;
} // {
meta = with lib; {
description = "Fast and portable executable to run your Elm tests";
homepage = "https://github.com/mpizenberg/elm-test-rs";
license = licenses.bsd3;
maintainers = [ maintainers.jpagex ];
};
};
}; };
elmNodePackages = with elmLib; elmNodePackages = with elmLib;

View file

@ -0,0 +1,18 @@
{ lib, rustPlatform, fetchurl, openssl, stdenv, Security, darwin }:
rustPlatform.buildRustPackage rec {
pname = "elm-test-rs";
version = "2.0";
src = fetchurl {
url = "https://github.com/mpizenberg/elm-test-rs/archive/v${version}.tar.gz";
sha256 = "sha256:1manr42w613r9vyji7pxx5gb08jcgkdxv29qqylrqlwxa8d5dcid";
};
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security darwin.apple_sdk.frameworks.CoreServices ];
cargoSha256 = "sha256:1dpdlzv96kpc25yf5jgsz9qldghyw35x382qpxhkadkn5dryzjvd";
verifyCargoDeps = true;
# Tests perform networking and therefore can't work in sandbox
doCheck = false;
}