universe/pkgs/default.nix
Infinidoge 3a1efb8645 revert: bump: kmscon
This reverts commit 3dabbe9d9817951ea82d6ac8a2aec7cac22e0581.
2023-03-31 11:59:35 -04:00

12 lines
336 B
Nix

final: prev: {
# keep sources this first
sources = prev.callPackage (import ./_sources/generated.nix) { };
# then, call packages with `final.callPackage`
kmscon = prev.kmscon.overrideAttrs (old: {
version = "unstable-2022-04-28";
src = final.sources.kmscon.src;
});
olympus = prev.callPackage ./olympus.nix { };
}