Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ depot, pkgs, ... }:
let
nixpkgs = import pkgs.nixpkgsSrc {};
localpkg = path: import path { pkgs = nixpkgs; };
packages = {
htop = localpkg ./htop;
};
in
packages // {
meta.targets = builtins.attrNames packages;
}