Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. with import <nixpkgs> {
  2. overlays = [ (self: super: {
  3. python = super.lib.recursiveUpdate super.python {
  4. pkgs.foo = super.runCommand "test" {} ''
  5. echo TESTING
  6. exit 1
  7. '';
  8. };
  9. })];
  10. };
  11. pythonPackages.foo
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement