toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / gh / gh-gei / package.nix
blobc678fa4b0a02337d5f33a7eeaae58820d8bfbaa1
1 { lib
2 , fetchFromGitHub
3 , buildDotnetModule
4 , dotnetCorePackages
5 }:
7 buildDotnetModule rec {
8   pname = "gh-gei";
9   version = "1.9.0";
11   src = fetchFromGitHub {
12     owner = "github";
13     repo = pname;
14     rev = "v${version}";
15     hash = "sha256-6lEEeAYrMB9wwATsORuaS21wLOB+gq/od88FobSse50=";
16   };
18   dotnet-sdk = dotnetCorePackages.sdk_6_0;
19   projectFile = "src/gei/gei.csproj";
20   nugetDeps = ./deps.nix; # File generated with `nix-build -A gh-gei.passthru.fetch-deps`.
22   meta = with lib; {
23     homepage = "https://github.com/github/gh-gei";
24     description = "Migration CLI for GitHub to GitHub migrations";
25     license = licenses.mit;
26     maintainers = with maintainers; [ lafrenierejm ];
27     mainProgram = "gei";
28   };