nixpkgs/pkgs/by-name/gh/gh-gei/package.nix
nixpkgs-merge-bot[bot] dc2bac706e
gh-gei: 1.11.0 -> 1.12.0 (#376716)
Co-authored-by: lafrenierejm <git@lafreniere.xyz>
2025-02-02 19:18:06 +00:00

30 lines
730 B
Nix

{ lib
, fetchFromGitHub
, buildDotnetModule
, dotnetCorePackages
}:
buildDotnetModule rec {
pname = "gh-gei";
version = "1.12.0";
src = fetchFromGitHub {
owner = "github";
repo = pname;
rev = "v${version}";
hash = "sha256-orDjHgyqwBo/LOuujCp/6p4G0SWDA/ZDWvtTfH1ofrU=";
};
dotnet-sdk = dotnetCorePackages.sdk_8_0_4xx;
projectFile = "src/gei/gei.csproj";
nugetDeps = ./deps.json; # 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";
};
}