mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
4f5daac94e
Fixes #136400
16 lines
501 B
Nix
16 lines
501 B
Nix
{ lib, pkgs
|
|
, overrides ? (self: super: {})}:
|
|
|
|
let
|
|
inside = (self:
|
|
let callPackage = pkgs.newScope self;
|
|
in rec {
|
|
interpreter = callPackage ./factor98.nix { inherit (pkgs) stdenv; };
|
|
|
|
# Convenience access for using the returned attribute the same way as the
|
|
# interpreter derivation. Takes a list of runtime libraries as its only
|
|
# argument.
|
|
inherit (self.interpreter) withLibs;
|
|
});
|
|
extensible-self = lib.makeExtensible (lib.extends overrides inside);
|
|
in extensible-self
|