8b09557f38
- C programming - HTML - Nix
12 lines
No EOL
168 B
Text
12 lines
No EOL
168 B
Text
# -*- mode: snippet -*-
|
|
# name: shell.nix boilerplate
|
|
# key: import
|
|
# --
|
|
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "$1";
|
|
buildInputs = [
|
|
$2
|
|
];
|
|
} |