blob: 42bc63ef5549db1c57d45c1c2484dd16e8612b99 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ pkgs }:
let fetch-gitignore = module: sha256:
let url = "https://www.toptal.com/developers/gitignore/api/" + module;
in pkgs.fetchurl { inherit url sha256; };
in {
emacs = fetch-gitignore "emacs" "1lswj6cna6y67i9siyr3rsa6z4ky42s9pv8zrji33swdlb8xmzxf";
linux = fetch-gitignore "linux" "16f8gr0glc1ai6flm310kv5sfhil6sjh4qr4k1914da1bhhib390";
fetcher = fetch-gitignore;
}
|