Files
nixpkgs/pkgs/development/ruby-modules/testing/stubs.nix
T
2025-10-26 15:31:34 +09:00

57 lines
939 B
Nix

{
stdenv,
lib,
ruby,
callPackage,
...
}:
let
mkDerivation =
{ name, ... }@argSet:
derivation {
inherit name;
text = (
builtins.toJSON (
lib.filterAttrs (
n: v:
builtins.elem n [
"name"
"system"
]
) argSet
)
);
builder = stdenv.shell;
args = [
"-c"
"echo $(<$textPath) > $out"
];
system = stdenv.hostPlatform.system;
passAsFile = [ "text" ];
};
fetchurl =
{
url ? "",
urls ? [ ],
...
}:
"fetchurl:${if urls == [ ] then url else builtins.head urls}";
stdenv' = stdenv // {
inherit mkDerivation;
stubbed = true;
};
ruby' = ruby // {
stdenv = stdenv';
stubbed = true;
};
in
{
ruby = ruby';
buildRubyGem = callPackage ../gem {
inherit fetchurl;
ruby = ruby';
};
stdenv = stdenv';
}