mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
39 lines
922 B
Nix
39 lines
922 B
Nix
{ buildGoModule, fetchFromGitHub, lib, makeWrapper, openssh }:
|
|
|
|
buildGoModule rec {
|
|
pname = "morph";
|
|
version = "1.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbcdk";
|
|
repo = "morph";
|
|
rev = "v${version}";
|
|
hash = "sha256-0CHmjqPxBgALGZYjfJFLoLBnoI0U7oZ8WyCtu1bkzZg=";
|
|
};
|
|
|
|
vendorHash = "sha256-KV+djwUYNfD7NqmYkanRVeKj2lAGfMjJhCUSRiC4/yM=";
|
|
|
|
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";
|
|
};
|
|
}
|