37 lines
884 B
Nix
37 lines
884 B
Nix
{
|
|
lib,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
git,
|
|
}:
|
|
buildDotnetModule rec {
|
|
pname = "min-ed-launcher";
|
|
version = "0.12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rfvgyhn";
|
|
repo = "min-ed-launcher";
|
|
tag = "v${version}";
|
|
hash = "sha256-jx8R/8mWuluD7ub8J3UqiP4A8k1npBgZpqRti3mhBrM=";
|
|
|
|
leaveDotGit = true; # During build the current commit is appended to the version
|
|
};
|
|
|
|
projectFile = "MinEdLauncher.sln";
|
|
nugetDeps = ./deps.json;
|
|
buildInputs = [
|
|
git # During build the current commit is appended to the version
|
|
];
|
|
|
|
executables = [ "MinEdLauncher" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/rfvgyhn/min-ed-launcher";
|
|
description = "Minimal Elite Dangerous Launcher";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.x86_64;
|
|
mainProgram = "MinEdLauncher";
|
|
maintainers = with lib.maintainers; [ jiriks74 ];
|
|
};
|
|
}
|