mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
28 lines
662 B
Nix
28 lines
662 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildDotnetModule
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "gh-gei";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "github";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-F1sxT9wh/K6VP7n1SlmmvmHlcgxDJw6Rht2hPIiRFjE=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|