mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
re2: add some key reverse dependencies to passthru.tests
This commit is contained in:
parent
1ddbc47dc7
commit
12c1a063bc
@ -1,4 +1,17 @@
|
||||
{ lib, stdenv, fetchFromGitHub, nix-update-script }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, nix-update-script
|
||||
|
||||
# for passthru.tests
|
||||
, bazel
|
||||
, chromium
|
||||
, grpc
|
||||
, haskellPackages
|
||||
, mercurial
|
||||
, ninja
|
||||
, python3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "re2";
|
||||
@ -39,6 +52,16 @@ stdenv.mkDerivation rec {
|
||||
updateScript = nix-update-script {
|
||||
attrPath = pname;
|
||||
};
|
||||
tests = {
|
||||
inherit
|
||||
chromium
|
||||
grpc
|
||||
mercurial;
|
||||
inherit (python3.pkgs)
|
||||
fb-re2
|
||||
google-re2;
|
||||
haskellPackages-re2 = haskellPackages.re2;
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user