Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. nixpkgsFJ = builtins.fetchGit {
  2. # Descriptive name to make the store path easier to identify
  3. name = "florianjacob-nixpkgs";
  4. url = https://github.com/florianjacob/nixpkgs/;
  5. ref = "journalwatch";
  6. rev = "60b9e339059e72d6ac3469509c41dacca57b2979";
  7. };
  8. pkgsFJ = import nixpkgsFJ { config = {}; };
  9. ...
  10. nixpkgs.overlays = [
  11. (self: super: {
  12. python3 = super.python.override {
  13. packageOverrides = python-self: python-super: {
  14. journalwatch = pkgsFJ.python3Packages.journalwatch;
  15. };
  16. };
  17. })
  18. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement