chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / gh / gh-gei / package.nix
bloba8e11244ae450cc04f88af794c728ec1d188ef9f
1 { lib
2 , fetchFromGitHub
3 , buildDotnetModule
4 }:
6 buildDotnetModule rec {
7   pname = "gh-gei";
8   version = "1.8.0";
10   src = fetchFromGitHub {
11     owner = "github";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-F1sxT9wh/K6VP7n1SlmmvmHlcgxDJw6Rht2hPIiRFjE=";
15   };
17   projectFile = "src/gei/gei.csproj";
18   nugetDeps = ./deps.nix; # File generated with `nix-build -A gh-gei.passthru.fetch-deps`.
20   meta = with lib; {
21     homepage = "https://github.com/github/gh-gei";
22     description = "Migration CLI for GitHub to GitHub migrations";
23     license = licenses.mit;
24     maintainers = with maintainers; [ lafrenierejm ];
25     mainProgram = "gei";
26   };