nixos-config/pkgs/default.nix
Christoph Heiss 737c28d190
tree-wide: Consolidate all nixpkgs/home-manager sources
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-07-31 22:47:23 +02:00

21 lines
589 B
Nix

_: super:
let inherit (import ../sources.nix) sourcehutPkgs;
in {
neomutt = super.neomutt.overrideAttrs (_: {
src = super.fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = "20230512";
sha256 = "sha256-/NeY9WrPXg6sSM1jnjgQKL7vSn8dTrAnvj229KcEEro=";
};
});
inherit (import sourcehutPkgs { }) sourcehut;
git-multi-shortlog = super.callPackage ./git-multi-shortlog.nix { };
homer = super.callPackage ./homer { };
dashboard-icons = super.callPackage ./dashboard-icons.nix { };
deploy-sink = super.callPackage ./deploy-sink.nix { };
}