Advertisement
Guest User

Untitled

a guest
Feb 5th, 2019
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. { nixpkgs ? import <nixpkgs> {}, compiler ? "ghc844" }:
  2. let
  3. drv = nixpkgs.haskell.packages.${compiler}.callPackage ./bohmian.nix {};
  4. in
  5. drv.overrideAttrs (oldAttrs: {
  6. nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ nixpkgs.pkgs.whatever;
  7. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement