nixpkgs/pkgs/by-name/gh/gh-gei/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
662 B
Nix
Raw Normal View History

2024-01-25 18:33:05 +03:00
{ lib
, fetchFromGitHub
, buildDotnetModule
}:
buildDotnetModule rec {
pname = "gh-gei";
2024-06-30 08:14:46 +03:00
version = "1.8.0";
2024-01-25 18:33:05 +03:00
src = fetchFromGitHub {
owner = "github";
repo = pname;
rev = "v${version}";
2024-06-30 08:14:46 +03:00
sha256 = "sha256-F1sxT9wh/K6VP7n1SlmmvmHlcgxDJw6Rht2hPIiRFjE=";
2024-01-25 18:33:05 +03: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";
};
}