Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created July 25, 2017 16:40
Show Gist options
  • Save infinisil/19d44340b5042e3fcf829e9369834084 to your computer and use it in GitHub Desktop.
Save infinisil/19d44340b5042e3fcf829e9369834084 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
{ extraPackages ? (pkgs: []) }:
stdenv.mkDerivation {
name = "test";
buildInputs = [
hello
] ++ extraPackages pkgs;
}
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