Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
961 B
Nix
51 lines
961 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
makeWrapper,
|
|
openssh,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "morph";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbcdk";
|
|
repo = "morph";
|
|
rev = "v${version}";
|
|
hash = "sha256-IqWtVklzSq334cGgLx/13l329g391oDW50MZWyO6l08=";
|
|
};
|
|
|
|
vendorHash = "sha256-zQlMtbXgrH83zrcIoOuFhb2tYCeQ1pz4UQUvRIsLMCE=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
"-X main.assetRoot=${placeholder "lib"}"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $lib
|
|
cp -v ./data/*.nix $lib
|
|
wrapProgram $out/bin/morph --prefix PATH : ${lib.makeBinPath [ openssh ]};
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "NixOS host manager written in Golang";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/dbcdk/morph";
|
|
maintainers = with maintainers; [
|
|
adamt
|
|
johanot
|
|
];
|
|
mainProgram = "morph";
|
|
};
|
|
}
|