2024-01-25 16:33:05 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildDotnetModule
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDotnetModule rec {
|
|
|
|
pname = "gh-gei";
|
2024-06-30 07:14:46 +02:00
|
|
|
version = "1.8.0";
|
2024-01-25 16:33:05 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "github";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-09-14 23:47:11 +02:00
|
|
|
hash = "sha256-F1sxT9wh/K6VP7n1SlmmvmHlcgxDJw6Rht2hPIiRFjE=";
|
2024-01-25 16:33:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
projectFile = "src/gei/gei.csproj";
|
|
|
|
nugetDeps = ./deps.nix; # File generated with `nix-build -A gh-gei.passthru.fetch-deps`.
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/github/gh-gei";
|
|
|
|
description = "Migration CLI for GitHub to GitHub migrations";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ lafrenierejm ];
|
|
|
|
mainProgram = "gei";
|
|
|
|
};
|
|
|
|
}
|