about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix
# -*- mode: snippet -*-
# name: shell.nix boilerplate
# key: import
# --
{ pkgs, ... }:

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