tvl-depot/configs/shared/emacs/.emacs.d/snippets/nix-mode/shell-nix

12 lines
168 B
Text
Raw Normal View History

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