mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
15 lines
300 B
Nix
15 lines
300 B
Nix
{ lib, pkgs }:
|
|
|
|
lib.makeScope pkgs.newScope (self:
|
|
let
|
|
inherit (self) callPackage;
|
|
in {
|
|
sources = import ./sources.nix {
|
|
inherit lib;
|
|
inherit (pkgs) fetchurl;
|
|
};
|
|
|
|
ed = callPackage (self.sources.ed) { };
|
|
edUnstable = callPackage (self.sources.edUnstable) { };
|
|
})
|