nixpkgs/pkgs/applications/editors/ed/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
300 B
Nix
Raw Normal View History

{ 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) { };
2023-07-29 03:44:34 +00:00
edUnstable = callPackage (self.sources.edUnstable) { };
})