Skip to content

Commit

Permalink
fixup! nix: remove overlay from nixosModule
Browse files Browse the repository at this point in the history
  • Loading branch information
SharzyL committed Dec 12, 2023
1 parent 3ed5b6f commit 4b73651
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,7 @@
outputs = { self, nixpkgs, flake-utils }:
let
overlay = final: prev: {
python3 = prev.python3.override {
packageOverrides = pfinal: pprev: {
telethon = pprev.telethon.overridePythonAttrs (oldAttrs: rec {
version = "1.32.1";
src = final.fetchFromGitHub {
owner = "LonamiWebs";
repo = "Telethon";
rev = "refs/tags/v${version}";
hash = "sha256-0477SxYRVqRnCDPsu+q9zxejCnKVj+qa5DmH0VHuJyI=";
};
doCheck = false;
});

tg-searcher = pfinal.callPackage ./nix/searcher-pkg.nix { };
};
};
tg-searcher = final.python3Packages.tg-searcher;
python3Packages = final.python3.pkgs;
tg-searcher = final.python3.pkgs.callPackage ./nix/searcher-pkg.nix { };
};
in
flake-utils.lib.eachDefaultSystem
Expand Down

0 comments on commit 4b73651

Please sign in to comment.