Skip to content

Instantly share code, notes, and snippets.

@LnL7

LnL7/shell.nix Secret

Last active February 5, 2019 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LnL7/0bd1cd01407d006f99cce7f68e654e68 to your computer and use it in GitHub Desktop.
Save LnL7/0bd1cd01407d006f99cce7f68e654e68 to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "shell-environment";
buildInputs = [
(pkgs.python37.withPackages (p: with p; [
pyyaml
# ...
]))
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment