Created
May 28, 2016 18:16
-
-
Save benley/4f964cbbda1eaff9607ae31fcc76a74c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
pkgs = import <nixpkgs> {}; | |
default = pkgs.callPackage (import ./default.nix); | |
in | |
pkgs.stdenv.mkDerivation { | |
name = "fake"; | |
buildInputs = [ | |
default | |
pkgs.extradep1 | |
pkgs.extradep2 | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment