Guest User

Untitled

a guest
Oct 7th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # default.nix for cookbook-cli
  2. with import <nixpkgs> {};
  3.  
  4. stdenv.mkDerivation {
  5. name = "cookbook-cli";
  6. src = ./.;
  7.  
  8. buildInputs = [
  9. libcookbook # fails (cannot coerce set to string)
  10. ];
  11. }
  12.  
Add Comment
Please, Sign In to add comment