Created
July 25, 2017 16:40
-
-
Save infinisil/19d44340b5042e3fcf829e9369834084 to your computer and use it in GitHub Desktop.
This file contains 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
with import <nixpkgs> {}; | |
{ extraPackages ? (pkgs: []) }: | |
stdenv.mkDerivation { | |
name = "test"; | |
buildInputs = [ | |
hello | |
] ++ extraPackages pkgs; | |
} |
This file contains 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
nix-shell --arg extraPackages 'p: [ p.fortune ]' --pure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment