packages feed

update-nix-fetchgit-0.2.2: tests/networked/test_github_submodules.in.nix

{ pkgs ? import <nixpkgs> { } }:

with pkgs;

let
  regular = fetchFromGitHub {
    owner = "expipiplus1";
    repo = "has-submodule";
    rev = "a-tag"; # a-tag
    sha256 = "";
  };

  submodules = fetchFromGitHub {
    owner = "expipiplus1";
    repo = "has-submodule";
    rev = "a-tag"; # a-tag
    sha256 = "";
    fetchSubmodules = true;
  };

in { inherit regular submodules;}