The code and data behind xeiaso.net
5
fork

Configure Feed

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

use niv vgo2nix

+2 -13
-12
nix/sources.json
··· 1 1 { 2 - "niv": { 3 - "branch": "master", 4 - "description": "Easy dependency management for Nix projects", 5 - "homepage": "https://github.com/nmattia/niv", 6 - "owner": "nmattia", 7 - "repo": "niv", 8 - "rev": "2ecfd86b631714b457e56d70dd83fa60435baeb6", 9 - "sha256": "01j6727cws8blg1npp54b4w6xa0gpgyzhyws2vqgp8clnlnmqqhi", 10 - "type": "tarball", 11 - "url": "https://github.com/nmattia/niv/archive/2ecfd86b631714b457e56d70dd83fa60435baeb6.tar.gz", 12 - "url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" 13 - }, 14 2 "vgo2nix": { 15 3 "branch": "master", 16 4 "description": null,
+2 -1
shell.nix
··· 1 1 let 2 2 pkgs = import <nixpkgs> { }; 3 3 sources = import ./nix/sources.nix; 4 - in pkgs.mkShell { buildInputs = [ pkgs.go sources.vgo2nix sources.niv ]; } 4 + vgo2nix = (import sources.vgo2nix { }); 5 + in pkgs.mkShell { buildInputs = [ pkgs.go pkgs.niv vgo2nix ]; }