Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. { pkgs ? import <nixpkgs> {}}:
  2. with pkgs;
  3. let
  4. fractalsPkg = haskellPackages.callPackage ./fractals.nix { };
  5. in
  6. ## This works:
  7. # fractalsPkg.env
  8. ## This does not work:
  9. stdenv.mkDerivation {
  10. name = "fractals-env";
  11. buildInputs = [ fractalsPkg.env ];
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement