tvl-depot/users/wpcarro/emacs/.emacs.d/snippets/nix-mode/shell-nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
163 B
Text
Raw Normal View History

# -*- mode: snippet -*-
# name: shell.nix boilerplate
# key: import
# --
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "$1";
buildInputs = [
$2
];
}