about summary refs log tree commit diff
path: root/users/grfn/emacs.d/snippets/nix-mode/fetchFromGitHub
blob: 9b9373573048e1202ddb23a50d4cc726821b81f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- mode: snippet -*-
# name: fetchFromGitHub
# uuid:
# key: fetchFromGitHub
# condition: t
# --
fetchFromGitHub {
                owner = "$1";
                repo = "$2";
                rev = "$3";
                sha256 = "0000000000000000000000000000000000000000000000000000";
}