about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix
blob: b5eb5a2447210e697350135e2109c672b95a46c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- mode: snippet -*-
# name: shell.nix boilerplate
# key: import
# --
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "$1";
  buildInputs = [
    $2
  ];
}