this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pkgs

+14
+14
pkgs.nix
··· 1 + let 2 + inherit (import <nixpkgs> {}) lib; 3 + 4 + fetcher = { owner, repo, rev, sha256, ... }: builtins.fetchTarball { 5 + inherit sha256; 6 + url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz"; 7 + }; 8 + 9 + versions = lib.mapAttrs 10 + (_:fetcher) 11 + (builtins.fromJSON (builtins.readFile ./versions.json)); 12 + 13 + in 14 + versions