Advertisement
Guest User

Untitled

a guest
Oct 7th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # default.nix for libcookbook
  2. { nixpkgs? <nixpkgs>, system ? builtins.currentSystem }:
  3.  
  4. let
  5. pkgs = import nixpkgs { inherit system; };
  6. callPackage = pkgs.lib.callPackageWith (pkgs // self);
  7. self = rec {
  8. libcookbook = callPackage ./libcookbook.nix { };
  9. };
  10. in
  11. self
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement